Skip to content

Instantly share code, notes, and snippets.

@xifengzhu
Created October 16, 2014 14:40
Show Gist options
  • Save xifengzhu/addcc15b8eaa69b85a69 to your computer and use it in GitHub Desktop.
Save xifengzhu/addcc15b8eaa69b85a69 to your computer and use it in GitHub Desktop.
# get ordinal
# example: 1 -> 1st, 2 -> 2nd, 3 -> 3rd, 4 -> 4th
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