Malik

null and 0 Javascript

July 07, 2020

let a = null;
let b = 0;

let c = a == b;

console.log(c); // false

null is not same with 0


Hi there, I'm Malik. This website just to write simple things of what I've done.