Advertisement
ProdanTenev

Clock

Mar 2nd, 2022
780
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.20 KB | None | 0 0
  1. function clock() {
  2.     for (let hours = 0; hours <= 23; hours++) {
  3.         for (let minutes = 0; minutes <= 59; minutes++) {
  4.             console.log(`${hours}:${minutes}`);            
  5.         }
  6.     }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement