Skip to content

Instantly share code, notes, and snippets.

@vldvel
Created February 24, 2018 18:58
Show Gist options
  • Save vldvel/e786c972a345642c83dca191c3d55b29 to your computer and use it in GitHub Desktop.
Save vldvel/e786c972a345642c83dca191c3d55b29 to your computer and use it in GitHub Desktop.
const arr = s.slice(0,8).split(':');
arr[0] = (s.indexOf('PM') > -1) ?
(arr[0] == 12 ? '12' : Number(arr[0]) + 12) :
(arr[0] == 12 ? '00' : arr[0]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment