JSFiddle - React, Tailwind, and code Playground

by vvakame

JavaScript

if("truthy") {
    alert("truthy");
}
if(undefined) {
    alert("falsy");
}

if(1 == "1") {
    alert("1 == \"1\"");
} else {
    alert("not 1 == \"1\"");
}

if(1 === "1") {
    alert("1 === \"1\"");
} else {
    alert("not 1 === \"1\"");
}