Skip to content

Instantly share code, notes, and snippets.

@goofballLogic
Last active October 28, 2021 17:51
Show Gist options
  • Save goofballLogic/717e9b676899d23d1f930a43d2a9b507 to your computer and use it in GitHub Desktop.
Save goofballLogic/717e9b676899d23d1f930a43d2a9b507 to your computer and use it in GitHub Desktop.
const ordinalSuffixes = {
"one": "st",
"two": "nd",
"few": "rd",
"other": "th"
};
const ordinalPluralRules = new Intl.PluralRules("en", { type: "ordinal" });
const ordinal = ordinalPluralRules.select(3);
ordinalSuffixes[ordinal]; // "rd"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment