Simple types / Strings

//Empty strings
let someEmptyString = "";
let anotherEmptyString = '';

if (!someEmptyString) {
    console.log("string is empty")
}

if (anotherEmptyString.length == 0) {
    console.log("another string is empty")
}