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 "" ?
|
4
|
|
|
|
|
|
If you just want to check whether there's any value, you can do
If you need to check specifically for an empty string over null, I would think checking against |
||||||||
|
|
|
I usually compare to "" in Javascript. |
||
|
|
|
|
I would say check against "". |
||
|
|
|
|
I would not worry too much about the most efficient method. Use what is most clear to your intention. For me that's usually EDIT: per comment from Constantin, if strVar some how ended up containing an integer 0 value, then |
|||
|
|
|
There's nothing representing an empty string in JavaScript. Do a check against either |
||
|
|
|
|
The closest thing you can get to str.Empty (with the precondition that str is a String) is:
|
||
|
|
|
|
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.
|
||
|
|
|
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,... |
||
|
|
|
|
thtx i'was searching for this only , solved my prob :
|
|||
|
|
|
|
Best answer:
|
|||
|
