Difference Between == and === in JavaScript|= vs == vs ===| JavaScript tutorial for beginners

Hi All,

In this video, we will cover the difference between =, ==, === operators.

  1. = is assignment operator

  2. == is loose equality operator.
    i.e. 90==‘90’ the result is true as it performs type coercion.

  3. === is strict equality operator.
    i.e 90===‘90’ the result is false and checks for value and type both.

#javascript #programming #web-development #developer

JavaScript Tutorial for Beginners - Difference Between == and ===
2.80 GEEK