Advertisement
Spocoman

08. Divisible by 3

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