Last active
July 28, 2022 14:58
-
-
Save jlbruno/1535691 to your computer and use it in GitHub Desktop.
Javascript Ordinal Numbers
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
// found here http://forums.shopify.com/categories/2/posts/29259 | |
var getOrdinal = function(n) { | |
var s=["th","st","nd","rd"], | |
v=n%100; | |
return n+(s[(v-20)%10]||s[v]||s[0]); | |
} |
yo save my time bro!! very cool!!!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
cool!!
this make me feel bad 😢 too long