Skip to content

Instantly share code, notes, and snippets.

@ankr
Last active July 28, 2016 08:46
Show Gist options
  • Save ankr/f38d877a7b83259199ff6ba61e52a2f0 to your computer and use it in GitHub Desktop.
Save ankr/f38d877a7b83259199ff6ba61e52a2f0 to your computer and use it in GitHub Desktop.
const ordinal = (n) => {
const s = ['th', 'st', 'nd', 'rd'];
const m = n % 100;
return n + (s[(m - 20) % 10] || s[m] || s[0]);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment