nodejs if undefinde code example
Example 1: nodejs check if variable is undefined
if ( typeof query !== 'undefined' && query )
{
//do stuff if query is defined and not null
}
else
{
}
Example 2: How can I check whether a variable is defined in Node Js
if (query){
doStuff();
}