check if value is undefined code example

Example 1: js if not undefined

if (typeof myVar !== "undefined") {
    console.log("myVar is DEFINED");
}

Example 2: javascript check for undefined

if (typeof myVariable === 'undefined'){
    //myVariable is undefined
}

Example 3: check if variable is undefined or null jquery

if (variable == null) {
    // variable is either null or undefined
}

Example 4: js check if undefined

let foo = undefined
//will return true
typeof foo === 'undefined'

Example 5: nodejs check if variable is undefined

if ( typeof query !== 'undefined' && query )
{
  //do stuff if query is defined and not null
}
else
{

}

Example 6: undefined value check in javascript

function divisors(integer) {
    let  i, flag = true; 
       let arr=[];       
           
            
            for(i = 2; i <= integer - 1; i++) {
                if (integer % i == 0) { 
                    flag = false; 
                     arr.push(i)
                } 
            }
            if (flag == true) 
              console.log(integer + " is prime"); 
            else
                console.log(arr)
}
console.log(divisors(15))