javascript says undefined when its not undefined code example
Example: checking if var is not defined js
if(typeof x !== 'undefined'){
alert("Variable x is defined.");
}
if(typeof x !== 'undefined'){
alert("Variable x is defined.");
}