JavaScript Sprawdź, czy niezdefiniowane lub null
if( typeof myVar === 'undefined' || myVar === null ){
// myVar is undefined or null
}
Grepper
if( typeof myVar === 'undefined' || myVar === null ){
// myVar is undefined or null
}
if (typeof value !== 'undefined' && value) {
//deal with value'
};