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 "" ?
|
feedback
|
|
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 | |||||||||||||||||||||
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.
| |||||||||||||||||||||
feedback
|
|
For checking if a string is empty, null or undefined I use:
For checking if a string is blank, null or undefined I use:
| |||||||||||
feedback
|
|
The closest thing you can get to str.Empty (with the precondition that str is a String) is:
| |||
|
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 EDIT: per comment from Constantin, if strVar some how ended up containing an integer 0 value, then | |||||
feedback
|
|
you could also go with regexps:
Checks for strings that are either empty or filled with whitespace. | |||
|
feedback
|
There's nothing representing an empty string in JavaScript. Do a check against either | |||
|
feedback
|
|
All the above are good but this will be even better. use
or use type casting:
Both do the same function, type cast the variable to boolean, where | |||||||||
feedback
|
|
I use :
| |||||||
feedback
|
|
I use a combination, fastest checks are first.
| |||
feedback
|
|
I usually use something like:
| |||
|
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 | ||||
|
feedback
|
this is also a generic way to check if field is empty. | |||
|
feedback
|