Created
December 2, 2009 22:51
-
-
Save redoPop/247686 to your computer and use it in GitHub Desktop.
JavaScript: 13.19 to "1:11 PM"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var to12Hr = function(n, r /* round to nearest r minutes */) { | |
if (!n || n >= 24) return '12:00 AM'; | |
var m = (Math.round(n%1 * (r = (r ? 60/r : 60))) / r) * 60 | 0; | |
return ((n = (m>59 ? n+1 : n))>=13 ? (n|0)-12 : n|0) + ':' + (m>9 ? (m>59 ? '00' : m) : '0'+m) + (n>=12 && m<60 ? ' PM' : ' AM'); | |
} | |
// to12Hr(6.5) => "6:30 AM" | |
// to12Hr(13.19) => "1:11 PM" | |
// to12Hr(13.19, 15) => "1:15 PM" (rounds to 15 mins) | |
// Useful for jQuery sliders and things. |
Good catch; thanks for pointing this out!
Your own solution works fine in all cases where r is falsy or 1, but otherwise causes the function to ignore rounding, so I've abused a bitwise OR to floor the final result instead.
Wooo, slick!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I would suggest using the following for line 3:
var m = Math.round(((n%1_(r = (r ? 60/r : 60)))/r)_60);
This is because for a decimal value like 16.516666666666666 the result of your code is 31.000000000000004 when it should be 31.