Contact: aviboots(AT)netvision.net.il
41,239 questions
53,745 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" */