Skip to content

Spot the Loop Mistake

Find the MistakeEasy

Question

This loop is supposed to print 'hello' three times, but it only prints twice. What is wrong?

Code

                  for (let i = 0; i < 2; i++) {
  console.log("hello");
}
                

Related Resources

Related Lessons

Look up unfamiliar terms

A beginner-friendly glossary explains jargon in plain English — variables, functions, DOM, Promise, and more.

View glossary

Decode error messages

Plain-English explanations of common errors — what they mean, why they happen, and how to fix them.

View errors

Build real projects

Apply what you learned by building guided projects with starter code and solutions.

← Back to topic