The difference between Double equal(==) and triple equal(===) too in javascript
When we want to compare something in JavaScript we use == or ===. but there is major difference between between == and ===.
==> == Only compare the value of both variable whereas === compare the value and type of the variable.
just as:-
var a = 1;
v...
abhishekranjan.hashnode.dev1 min read