Question 1
If the value of x is 40, then what is the output of the following program? (x % 10 == 0)? console.log(“Divisible by 10”) : console.log(“Not divisible by 10”);
ReferenceError
Divisible by 10
Not divisible by 10
None of the above
Back
Next