Skip to content

Instantly share code, notes, and snippets.

@ikennaokpala
Forked from jlbruno/ordinal.js
Last active December 26, 2015 03:08
Show Gist options
  • Save ikennaokpala/7083336 to your computer and use it in GitHub Desktop.
Save ikennaokpala/7083336 to your computer and use it in GitHub Desktop.
getGetOrdinal = (n) ->
s = ["th", "st", "nd", "rd"]
v = n % 100
n + (s[(v - 20) % 10] or s[v] or s[0])
// found here http://forums.shopify.com/categories/2/posts/29259
var getGetOrdinal = function(n) {
var s=["th","st","nd","rd"],
v=n%100;
return n+(s[(v-20)%10]||s[v]||s[0]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment