Advertisement
pacho_the_python

Untitled

Jul 10th, 2022
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function forLoopTest() {
  2.     for (i = 1; i <= 1000; i++) {
  3.         if (i % 10 === 7) {
  4.             console.log(i)
  5.         }
  6.     }
  7. }
  8.  
  9.  
  10. forLoopTest()
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement