$ordinal
$ordinal
adds st
nd
rd
th
to a number such as 1st
2nd
3rd
4th
.
Usage
$ordinal[number]
Parameters
Field | Type | Description | Required |
---|---|---|---|
number | number | Number which will add st nd rd th to it. | true |
Example(s)
1client.command({2 name: "ordinal",3 code: `4 $ordinal[12] -> Returns 12th5 $ordinal[50] -> Returns 50th6 $ordinal[11] -> Returns 11th7 $ordinal[88] -> Returns 88th8 `9});