Answers for "=== in react"

1

=== in react

0==false   // true, because false is equivalent of 0
0===false  // false, because both operands are of different type
2=="2"     // true, auto type coercion, string converted into number
2==="2"    // false, since both operands are not of same type
Posted by: Guest on August-18-2020

Code answers related to "=== in react"

Code answers related to "Javascript"

Browse Popular Code Answers by Language