Advertisement
pacho_the_python

Untitled

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