null and 0 JavascriptJuly 07, 2020let a = null; let b = 0; let c = a == b; console.log(c); // false null is not same with 0