What is the difference between "=" "==" and "===" in Javascript
Anonymous
= is assignment, == is comparison with type conversion, and === is strict comparison. For example, with == the number value 3 and the string value "3" will result in true. Whereas with ===, it is false.
Check out your Company Bowl for anonymous work chats.