Advertisement
marinvch

10. Divisible by 3

Sep 26th, 2018
427
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function solve(){
  2.     for (let i = 3; i <=100; i+=3) {
  3.         console.log(i)
  4.  
  5.     }
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement