wordCase
Convert a string to word case (capitalize first letter, rest lowercase).
string(required): the string to convert
utlx
wordCase("HELLO WORLD") // "Hello world"
wordCase("hello") // "Hello"