This repository is intended to offer several snipes and proposals we may apply when programming for the web.
const array = ['x', 'c', 'f', 'a']
alphabetSort(array) // output: ['a','c','f','x']
convertToOrdinal(1) // output: 1st
convertToOrdinal(2) // output: 2nd
convertToOrdinal(3) // output: 3rd
convertToOrdinal(7) // output: 7th
convertToOrdinal(20) // output: 20th
License
This project is under the MIT License.