console.log(8 * null); // output= 0
and
console.log(8 * undefined); // output = NaN
but
console.log(null == undefined); // output =true
why????
For further actions, you may consider blocking this person and/or reporting abuse
console.log(8 * null); // output= 0
and
console.log(8 * undefined); // output = NaN
but
console.log(null == undefined); // output =true
why????
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)