chèque javascript s'il n'est pas défini
if (typeof myVar !== "undefined") {
console.log("myVar is DEFINED");
}
Grepper
if (typeof myVar !== "undefined") {
console.log("myVar is DEFINED");
}
if (typeof myVariable === 'undefined'){
//myVariable is undefined
}
if(typeof comment === 'undefined') {
alert('Variable "comment" is undefined.');
} else if(comment === null){
alert('Variable "comment" is null.');
}
let id;
if(typeof id === 'undefined') {
console.log("id is undefined...");
}
if (t === undefined) {
return 'Undefined value!';
}
if (typeof something != "undefined") {
// ...
}