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 93 views
2 answers 156 views
1 answer 122 views
1 answer 128 views
2 answers 133 views
...