How to check if a string is empty in TypeScript

2 Answers

0 votes
function isEmpty(str : string) {
    return (!str || str.length === 0 );
}
 
const str = "";
 
if (isEmpty(str)) {
    console.log("Empty")
}
 
 
 
 
 
/*
run:
 
"Empty"
 
*/

 



answered Feb 7, 2022 by avibootz
0 votes
const str = "";
 
if (str === "") {
    console.log("Empty")
}
 
 
 
 
 
/*
run:
 
"Empty"
 
*/

 



answered Feb 7, 2022 by avibootz

Related questions

1 answer 100 views
2 answers 165 views
1 answer 129 views
1 answer 133 views
2 answers 141 views
...