Functionutilsv0.5.0ordinalReturns the ordinal suffix for a given number. ordinal(n: number): stringordinal(n: number): stringExamplesCopyordinal(1); // "1st" ordinal(22); // "22nd" ordinal(13); // "13th"ordinal(1); // "1st" ordinal(22); // "22nd" ordinal(13); // "13th"Paramsnn: numbern: numberThe number to get the ordinal for