vote up 13 vote down star
4

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 "" ?

flag

60% accept rate

10 Answers

vote up 34 vote down check

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|flag
Excellent answer, well written. – Raithlin Sep 30 '08 at 17:43
2  
(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
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
vote up 2 vote down

I usually compare to "" in Javascript.

link|flag
vote up 1 vote down

I would say check against "".

link|flag
vote up 5 vote down

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|flag
Bad idea. You'll get true if strVar is accidentally assigned 0. – Constantin Sep 30 '08 at 19:21
vote up 2 vote down
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|flag
vote up 1 vote down

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

if (!str.length) { ...
link|flag
vote up 1 vote down

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|flag
Now that's an expensive test – Chris Noe Sep 30 '08 at 23:26
vote up 0 vote down

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,...

link|flag
vote up 0 vote down

thtx i'was searching for this only , solved my prob :
by this

if(str.replace(/\s/g,"") == ""){
}
link|flag
vote up -3 vote down

Best answer:

if (str.empty()) {
   alert("str is empty!");
} else {
   alert("str is NOT empty!");
}
link|flag
Strings don't have a empty() method in plain Javascript. – sth Aug 2 at 1:09

Your Answer

Get an OpenID
or

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