JavaScript Quirks That Will Make You Say “Wait, What?”
Question - 1
console.log(null === undefined) //false
Why it's false.👀
Expression*:* null === undefined
Result*:* false
Explanation
In JavaScript, both null and undefined represent "empty" values
devasif-7.hashnode.dev7 min read