Essential JavaScript Interview Questions Day125
Today #Day125 of #365DaysOfCode, Learning Essential JavaScript Interview Questions.
17. What will be the output when the following code is executed? Explain.
console.log(false == '0') // true
console.log(false === '0') // false
triple-equal operator...
dheerajy1.hashnode.dev2 min read