how come variable is still coming up as undefined or null but i can select it in console code example
Example 1: javascript check if undefined or null
if( typeof myVar === 'undefined' || myVar === null ){
// myVar is undefined or null
}
Example 2: null undefined
Undefined used for unintentionally missing values.
Null used for intentionally missing values.