Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.09 KB | None | 0 0
  1. function task_2(n){
  2. for(var i=1;i<=n;i+=3){
  3. console.log(i);
  4. }
  5. }
  6.  
  7. task_2(100);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement