Loose Equality Vs Strict Equality in JavaScript
What is '=' in Javascript?
A single equal to '=' sign, in JavaScript, means to assign a value to something.
A single equal to (=) is an assignment operator.
This is completely different from the equality operators: '==' and '==='
// for example
const...
amulya.hashnode.dev5 min read
Sahil Bhosale
Exploring the possibilities of web development, one post at a time.
Well explained