Spocoman

01. Clock

Dec 30th, 2021 (edited)
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function clock() {
  2.     for (let h = 0; h < 24; h++){
  3.         for(let m = 0; m < 60; m++){
  4.             console.log(`${h}:${m}`);
  5.         }
  6.     }
  7. }
Add Comment
Please, Sign In to add comment