javascript use undefined to see if variable has value code example
Example: nodejs check if variable is undefined
if ( typeof query !== 'undefined' && query )
{
//do stuff if query is defined and not null
}
else
{
}
if ( typeof query !== 'undefined' && query )
{
//do stuff if query is defined and not null
}
else
{
}