2020-03-12

You may have seen double and triple equals signs in JavaScript. But what do they mean? Well in short: == inherently converts type and === does not convert type. Double Equals (==) checks for value equality only. It inherently does type coercion. This means that before checking the values, it converts the types

Show more