0 == false // true0 === false // false, because they are of a different type1 == "1" // true, automatic type conversion for value only1 === "1" // false, because they are of a different typenull == undefined // truenull === undefined // false'0' == false // true'0' === false // false