How to check if a string is empty in JavaScript

2 Answers

0 votes
const str = '';

if (str === '') {
  	console.log("Empty")
}





/*
run:

"Empty"

*/

 



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

 



answered Feb 7, 2022 by avibootz
edited Jun 25, 2022 by avibootz

Related questions

1 answer 105 views
2 answers 240 views
1 answer 132 views
1 answer 139 views
2 answers 238 views
...