Guest User

Untitled

a guest
Jun 23rd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Let's start by printing out all of the numbers from 1 and 20,
  2. // and let's do it the quick and easy way.
  3. var number;
  4. //console.log("here are your numbers for fizzbuzz:");
  5.  
  6. for (number = 1; number < 21; number++)
  7.     {
  8.     console.log( number + " ");
  9.     }
Add Comment
Please, Sign In to add comment