This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.

Smartphone icons created by Freepik - Flaticon

JS Comparisons

Remove the comment (at the beginning of each line) to test each case:

let x;
//x = (0 == "");   // true
//x = (1 == "1");  // true
//x = (1 == true);   // true
//x = (0 === "");  // false
//x = (1 === "1");   // false
x = (1 === true);  // false
document.getElementById("demo").innerHTML = x;