Skip to content

Instantly share code, notes, and snippets.

@Jheysoon
Forked from jlbruno/ordinal.js
Created July 14, 2017 01:19
Show Gist options
  • Save Jheysoon/a5d043a673f46405e9fe918bcd31077c to your computer and use it in GitHub Desktop.
Save Jheysoon/a5d043a673f46405e9fe918bcd31077c to your computer and use it in GitHub Desktop.
Javascript Ordinal Numbers
// 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]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment