sprawdzanie, czy var nie jest zdefiniowany JS
if(typeof x !== 'undefined'){
alert("Variable x is defined.");
}
if(typeof x !== 'undefined'){
alert("Variable x is defined.");
}
var x = (typeof x === 'undefined') ? your_default_value : x;