I saw this thread, but I didn't see a JavaScript specific example. Is there a simple string.Empty in JavaScript, or is it just checking for "" ?

link|improve this question

60% accept rate
feedback

16 Answers

up vote 347 down vote accepted

If you just want to check whether there's any value, you can do

if (strValue) {
    //do something
}

If you need to check specifically for an empty string over null, I would think checking against "" is your best bet, using the === operator (so that you know that it is, in fact, a string you're comparing against).

link|improve this answer
3  
Excellent answer, well written. – Raithlin Sep 30 '08 at 17:43
16  
(Would be even better if you mentioned that === also checks that the two are the same type) – Chris Noe Sep 30 '08 at 18:46
6  
Testing the length property may actually be faster than testing the string against "", because the interpreter won't have to create a String object from the string literal. – Vincent Robert Oct 1 '08 at 20:07
4  
@bdukes when you start to care about that kind of micro-optimizations, I don't think Chrome is the browser where you are having most of your performance problems... – Vincent Robert Sep 27 '10 at 16:18
2  
Point taken, I just don't have the motivation to figure out how to profile something like that in IE6... – bdukes Sep 27 '10 at 17:16
show 3 more comments
feedback

If you need to make sure that the string is not just a bunch of empty spaces (I'm assuming this is for form validation) you need to do a replace on the spaces.

if(str.replace(/\s/g,"") == ""){
}
link|improve this answer
25  
Now that's an expensive test – Chris Noe Sep 30 '08 at 23:26
4  
But does the job if what you actually want to test for is a string with non-space content. Is there a less-expensive way to test this? – flashparry Oct 22 '10 at 10:02
1  
How about the length property? – driAn Nov 11 '10 at 13:57
6  
Instead of removing all the spaces, why not just check if there's a non-space? Has 2 advantages that it can bail out early if there is a non-space character, and it doesn't have return a new string which you then check against. if(str.match(/\S/g)){} – Mark Jun 20 '11 at 4:29
13  
@Mark FYI, you wouldn't need the global modifier, since the match of the first occurrence of a non-space character would mean the string is not empty: str.match(/\S/) – neezer Jun 27 '11 at 15:04
show 3 more comments
feedback

For checking if a string is empty, null or undefined I use:

function isEmpty(str) {
    return (!str || 0 === str.length);
}

For checking if a string is blank, null or undefined I use:

function isBlank(str) {
    return (!str || /^\s*$/.test(str));
}
link|improve this answer
1  
+1 For making functions that makes code more readable – Brimstedt Mar 15 at 8:24
sencod example, a little better example would be: /[^\s]/.test(str) – Rok Kralj Apr 15 at 12:21
@RokKralj - your 'better example' fails as it only tests that the string contains white spaces, not that it is entirely white spaces. Try testing against the string 'x x' – Chris Apr 16 at 13:55
(!str || !str.length) – ajax333221 Apr 18 at 15:22
feedback

The closest thing you can get to str.Empty (with the precondition that str is a String) is:

if (!str.length) { ...
link|improve this answer
the best desicion infact!! – holms Jun 9 '10 at 15:07
feedback

I would not worry too much about the most efficient method. Use what is most clear to your intention. For me that's usually strVar == "".

EDIT: per comment from Constantin, if strVar some how ended up containing an integer 0 value, then strVar == "" returns true. So if that is a danger in your situation, you should code strVar === "", which ensures that the types are also the same.

link|improve this answer
3  
Bad idea. You'll get true if strVar is accidentally assigned 0. – Constantin Sep 30 '08 at 19:21
feedback

you could also go with regexps:

if((/^\s*$/).test(str)) { }

Checks for strings that are either empty or filled with whitespace.

link|improve this answer
it really worked for me – waqari Sep 21 '11 at 5:25
feedback
var s; // undefined
var s = ""; // ""
s.length // 0

There's nothing representing an empty string in JavaScript. Do a check against either length (if you know that the var will always be a string) or against ""

link|improve this answer
feedback

All the above are good but this will be even better. use !!(not not) operator.

if(!!str){
some code here;
}

or use type casting:

if(Boolean(str)){
    codes here;
}

Both do the same function, type cast the variable to boolean, where str is a variable.
Returns false for null,undefined,0,000,"",false.
Returns true for string "0" and whitespace " ".

link|improve this answer
4  
Why is this "even better"? – Mene Apr 3 '11 at 13:04
Of all the suggested solutions on this page, this is the only one if(!!str) that works! Undefined, Null, Empty String are all handled without issue. – Rob Sep 22 '11 at 15:17
tried a few of the others and they wouldn't work for my situation with a null value. these work great. – smerny Feb 15 at 19:36
feedback

I usually compare to "" in Javascript.

link|improve this answer
feedback

I would say check against "".

link|improve this answer
feedback

I use :

function empty(e) {
                    switch(e) {
                        case "":
                        case 0:
                        case "0":
                        case null:
                        case false:
                        case typeof this == "undefined":
                            return true;
                                default : return false;
                    }
                }

empty(null) // true
empty(0) // true
empty(7) // false
empty("") // true
empty((function() { return "" }) ) // true
link|improve this answer
5  
hells solution. – Evgeny Feb 25 '11 at 10:22
This solution is more language agnostic. The only JavaScript feature it relies on is typeof. So it is a good example of a solution you can use when you don't trust the implementations in different browsers and don't have time to grab a better solution. (IE, no internet access). It's something like a proof. Not the cleanest but you can be sure it will work without knowing too much about JavaScript. – Jeff Davis Apr 20 at 13:11
feedback

I use a combination, fastest checks are first.

function isBlank(pString){
    if (!pString || pString.length == 0) {
        return true;
    }
    // checks for a non-white space character 
    // which I think [citation needed] is faster 
    // than removing all the whitespace and checking 
    // against an empty string
    return !/[^\s]+/.test(pString);
}
link|improve this answer
Just wondering if you could explain when the length check would be necessary? Wouldn't !pString catch anything that was null/empty string? This seems to work. var test=''; if (!test) alert('empty'); – Nicholi Oct 27 '11 at 21:49
feedback

I usually use something like:

if (str == "") {
     //Do Something
}
else {
     //Do Something Else
}
link|improve this answer
feedback

just FYI, i think the most useful APIs for the String class are at Mozilla and javascript kit. elated.com has a tutorial on all of String's properties, methods,...

Please note: the Mozilla link has been updated to https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/String

link|improve this answer
feedback

str.value.length == 0

link|improve this answer
feedback
function tell()
{
var pass = document.getElementById('pasword').value;
var plen = pass.length;

now you can check if your string is empty as like 
if(plen==0)
{
         alert('empty');
}
else
{
   alert('you entered something');
}
}


<input type='text' id='pasword' />

this is also a generic way to check if field is empty.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.