Operator

Report a typo

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);
} 
Select one or more options from the list
___

Create a free account to access the full topic