Difference Between == and === in javascript
But lets first understand what does = , == and === do in javascript
The "=" is an assignment operator, It assigns a value to a variable.
let a = 5
//Here we have assigned the value 5 to variable a.
let a = "This is the best blog you have ever read"
...
vishz.hashnode.dev2 min read