Difference Between =, ==, and === in JavaScript
Introduction to the operators
= is used for assigning values to a variable in JavaScript.
== is used for comparison between two variables irrespective of the datatype of the variable.
=== is used for comparison between two variables but this will ch...
destiny.hashnode.dev2 min read