Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ivan-kalachikov/345ab12b4833ec4227f695a668803bd3 to your computer and use it in GitHub Desktop.
Save ivan-kalachikov/345ab12b4833ec4227f695a668803bd3 to your computer and use it in GitHub Desktop.
getNumberWithOrdinal
function getNumberWithOrdinal(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