Type Coercion
A language that converting the value of certain type to another type. All languages do this type conversion
1 == '1'; // true
1 != '1'; // false1 === '1'; // false
1 !== '1'; // trueLast updated
A language that converting the value of certain type to another type. All languages do this type conversion
1 == '1'; // true
1 != '1'; // false1 === '1'; // false
1 !== '1'; // trueLast updated