Skip to content

Instantly share code, notes, and snippets.

@goliatone
Created April 2, 2014 19:08
Show Gist options
  • Save goliatone/9940947 to your computer and use it in GitHub Desktop.
Save goliatone/9940947 to your computer and use it in GitHub Desktop.
ordinal suffix
function getGetOrdinal(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