Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a universal JavaScript function that checks that a variable has a value and ensures that it's not undefined or null? I've got this code, but I'm not sure if it covers all cases:

function isEmpty(val){
    return (val === undefined || val == null || val.length <= 0) ? true : false;
}
share|improve this question
I'm pretty sure that about covers it, good question though. – hackNightly Apr 1 '11 at 15:17
possible duplicate of How do you check for an empty string in JavaScript? – Dour High Arch Jun 10 at 19:40

7 Answers

up vote 216 down vote accepted

You can just check if the variable has a truthy value or not. That means

if( value ) {
}

will evaluate to true if value is not:

  • null
  • undefined
  • NaN
  • empty string ("")
  • 0
  • false

The above list represents all possible falsy values in ECMA-/Javascript. Find it in the specification at the ToBoolean section.

Furthermore, if you don't know whether a variable exists (that means, if it was declared) you should check with the typeof operator. For instance

if( typeof foo !== 'undefined' ) {
    // foo could get resolved and it's defined
}

If you can be sure that a variable is declared at least, you should directly check if it has a truthy value like shown above.

Further read: http://typeofnan.blogspot.com/2011/01/typeof-is-fast.html

share|improve this answer
Thanks. You just saved me some messy time-waste. – GuruM Jun 14 '12 at 14:08
3  
What if the value is a false boolean that was intended. Sometimes you want to give a default value if there is no value, which won't work if false boolean was passed in. – TruMan1 Dec 30 '12 at 22:38
2  
@TruMan1: in such a case (where your logic dictates the validation) you have to go like if( value || value === false ). Same goes for all falsy values, we need to validate for those explicitly. – jAndy Dec 31 '12 at 4:58
function isEmpty(value){
  return (value == null || value.length === 0);
}

This will return true for

undefined  // Because undefined == null

null

[]

""

and zero argument functions since a function's length is the number of declared parameters it takes.

To disallow the latter category, you might want to just check for blank strings

function isEmpty(value){
  return (value == null || value.length === '');
}
share|improve this answer
// for null and undefined
return typeof value === "undefined" || value === null;
share|improve this answer
The only clear answer for the undefined or null questions. – eomeroff May 9 at 21:36

It's really about what you need, I use something like:

self.empty = function () {
    if (
            element === ""          ||
            element === 0           ||
            element === "0"         ||
            element === null        ||
            element === "NULL"      ||
            element === undefined   ||
            element === false
        ) {
        return true;
    }
    if (typeof(element) === 'object') {
        var i = 0;
        for (key in element) {
            i++;
        }
        if (i === 0) { return true; }
    }
    return false;
}

But, honestly, that's a bit more broad than I would recommend for most, it just happened to evolve based on the integration needs with other people's code over time. And, I'll even note that it really doesn't handle Arrays as well as it should. The best thing to do is give yourself some personal context and make sure you cover it.

share|improve this answer
Another note, I really should better handle object properties too. Sheesh, now I've just code reviewed my own code and found changes... – whoughton Apr 1 '11 at 15:19
1  
Other than the "NULL" check and the object check (for which you probably want hasOwnProperty, btw; surely an object is empty if it has nothing beyond its prototype's properties?), you're largely reinventing the wheel there. – T.J. Crowder Apr 1 '11 at 15:21
1  
Totally agreed, hasOwnProperty was exactly what I meant above. This was more influenced from alternative languages than JS, to be honest and on second look could/should absolutely be... "streamlined." – whoughton Apr 1 '11 at 15:24

You are a bit overdoing it. To check if a variable is not given a value, you would only need to check against undefined and null.

function isEmpty(value){
    return (typeof value === "undefined" || value === null);
}

This is assuming 0, "", and objects(even empty object and array) are valid "values".

share|improve this answer

If the variable hasn't been declared, you wont be able to test for undefined using a function because you will get an error.

if (foo) {}
function (bar) {}(foo)

Both will generate an error if foo has not been declared.

If you want to test if a variable has been declared you can use

typeof foo != "undefined"

if you want to test if foo has been declared and it has a value you can use

if (typeof foo != "undefined" && foo) {
    //code here
}
share|improve this answer

you can use:

If clause to validate if the string or value is not empty. like this:

if (someVar.value) 
{
  //its not emppty
}
else
{
  //Its empty
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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