js if var undefined code example
Example 1: javascript check if undefined or null
// simple check do the job
if (myVar) {
// comes here either myVar is not null,
// or myVar is not undefined,
// or myVar is not '' (empty string).
}
Example 2: undefined value check in javascript
function divisors(integer) {
let i, flag = true;
let arr=[];
for(i = 2; i <= integer - 1; i++) {
if (integer % i == 0) {
flag = false;
arr.push(i)
}
}
if (flag == true)
console.log(integer + " is prime");
else
console.log(arr)
}
console.log(divisors(15))