Guest User

Untitled

a guest
Nov 19th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. function clock() {
  2. let time = new Date().getTime();
  3. let seconds = ~~(time / 1000) % 60;
  4. let minutes = ~~((time / 1000) / 60) % 60;
  5. let hours = ~~((time / 1000) / 60 / 60) % 24 + 2; // + 2 for local time
  6. return {seconds: seconds, minutes: minutes, hours: hours};
  7. }
Add Comment
Please, Sign In to add comment