Contact: aviboots(AT)netvision.net.il
40,891 questions
53,304 answers
573 users
function isEmpty(str : string) { return (!str || str.length === 0 ); } const str = ""; if (isEmpty(str)) { console.log("Empty") } /* run: "Empty" */
const str = ""; if (str === "") { console.log("Empty") } /* run: "Empty" */