javascript check if variable has value code example

Example 1: is var is not blank then display value in javascript

if(data !== null && data !== '') {
   // do something
}

Example 2: javascript check if not null

//Even if the value is 0, this will execute. 

if (myVar !== null) {...}

//If you don't want it to execute when it's 0, then set it as

if (myVar) {...}

//This will return false if var value is 0.

Example 3: How can I test whether a variable has a value in JavaScript?

if (typeof variable == "undefined") {...} --> return true if variable undefined

//An empty string evaluates to FALSE in JavaScript so you can just do:
if (variable) {...}

Example 4: javascript check if object is null or empty

if (typeof value !== 'undefined' && value) {
    //deal with value'
};

Example 5: javascript check if undefined or null or empty string

// simple check do the job
if (myString) {
 // comes here either myString is not null,
 // or myString is not undefined,
 // or myString is not '' (empty).
}

Tags:

Sql Example