Loop interruption

Report a typo

What is the result of the following code?

for (let n = 100; n > 50; --n) {
  if (n == 95) {
    break;
  }
  console.log(n); 
}
Select one option from the list
___

Create a free account to access the full topic