Created
November 4, 2017 00:48
-
-
Save jondwx/cf68e4b5c58a47e05e2c7bb1aa2bb468 to your computer and use it in GitHub Desktop.
Number to Ordinal Format
This file contains hidden or 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
function numberToOrdinal(i) { | |
var j = i % 10, | |
k = i % 100; | |
if (j == 1 && k != 11) { | |
return i + "st"; | |
} | |
if (j == 2 && k != 12) { | |
return i + "nd"; | |
} | |
if (j == 3 && k != 13) { | |
return i + "rd"; | |
} | |
return i + "th"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment