Skip to content

Predict JavaScript while Loop Output

Predict OutputBeginner

Question

What does this code print?

Code

                  let n = 3;
while (n > 0) {
  console.log(n);
  n = n - 1;
}
                

Related Resources

Related Lessons

  • Loops

    Learn how JavaScript while loops work.

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