Languages
[Edit]
EN

JavaScript - check if string is empty

0 points
Created by:
May87
827

In this article, we would like to show you how to check if string is empty in JavaScript.

Quick solution:

// ONLINE-RUNNER:browser;

const myString = '';

if (myString === '') {
    console.log('myString is empty');
} else {
    console.log('myString is not empty');
}

 

Practical examples

In this example, we create a custom function that checks if the string is empty.

// ONLINE-RUNNER:browser;

const isEmpty = (string) => {
    return string ? false : true;
};

console.log( isEmpty('') );            // true
console.log( isEmpty('sample text') ); // false

Note:

This solution can be used to check if the string is null or undefined too.

Related posts

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

JavaScript - String (popular problems)

JavaScript - check if string is empty
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join