Last active
October 28, 2021 17:51
-
-
Save goofballLogic/717e9b676899d23d1f930a43d2a9b507 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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