Skip to content

Instantly share code, notes, and snippets.

@dutchcelt
Last active February 11, 2024 20:35
Show Gist options
  • Save dutchcelt/2cde21075520f9d042f9079a8e22190e to your computer and use it in GitHub Desktop.
Save dutchcelt/2cde21075520f9d042f9079a8e22190e to your computer and use it in GitHub Desktop.
Convert an index value to an ordinal value
// Source: https://stackoverflow.com/questions/13627308/add-st-nd-rd-and-th-ordinal-suffix-to-a-number
const ordinalConverter = (i) => {
const ordinal = ["st","nd","rd"][((i+90)%100-10)%10-1]||"th";
return `${i}${ordinal}`;
};
export ordinalConverter;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment