Advertisement
Guest User

Untitled

a guest
Apr 18th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. let givenDate = (new Date(date)).toTimeString();
  2. let offset = givenDate.split("GMT")[1].substring(0, 5); //in the format [-/+]hhmm
  3. offset = offset.substring(0,3) + ":" + offset.substring(3,5); //in the format [-/+]hh:mm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement