Answers for "check if variable is not undefined?"

19

js if not undefined

if (typeof myVar !== "undefined") {
    console.log("myVar is DEFINED");
}
Posted by: Guest on October-23-2019
0

nodejs check if variable is undefined

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

}
Posted by: Guest on December-25-2020

Code answers related to "check if variable is not undefined?"

Code answers related to "Javascript"

Browse Popular Code Answers by Language