Answers for "js does undefined equal null"

20

js is undefined or null

var myVar=null;

if(myVar === null){
    //I am null;
}

if (typeof myVar === 'undefined'){
    //myVar is undefined
}
Posted by: Guest on August-01-2019
0

how to check null and undefined

if( value ) {
}
Posted by: Guest on March-22-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language