Guest User

Untitled

a guest
Sep 14th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. for ( var i=99; i<=101; i++ )
  2. {
  3. if ((i % 2) === 0) {
  4. console.log("Even!");
  5. } else {
  6. console.log("Odd!");
  7. }
  8. }
Add Comment
Please, Sign In to add comment