What operators can be inserted in the third line of the code below? What result will be displayed in the console with them?
for (let n = 2; n <= 7; n++) {
if (n % 10 == 5) {
???
}
console.log(n);
} What operators can be inserted in the third line of the code below? What result will be displayed in the console with them?
for (let n = 2; n <= 7; n++) {
if (n % 10 == 5) {
???
}
console.log(n);
} Create a free account to access the full topic