js if is set code example
Example 1: javascript check if set
if (typeof variable !== 'undefined') {
// the variable is defined
}
//or
if (typeof variable === 'undefined') {
// variable is undefined
}
Example 2: isset js
if (typeof obj.foo !== 'undefined') {
}