Skip to content

Latest commit

 

History

History

quiz-12

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Fix the Error

Directions:

Here is a for loop that's supposed to print the numbers 5 through 9. Fix the error!

for (x < 10; x++) {
  console.log(x);
}