What is difference between == and ===
Anonymous
== checks for abstract equality (compares the value) whereas === checks for strict equality (compares value and type) for example 6=='6' returns true and 6==='6' returns false
Check out your Company Bowl for anonymous work chats.