TZinovieva

Clock JS

Oct 21st, 2022
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function clock() {
  2.     for (let i = 0; i <= 23; i++) {
  3.         for (let j = 0; j <= 59; j++) {
  4.             console.log(`${i}:${j}`);
  5.     }
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment