Checks if a string starts with an uppercase letter.
The input string to check.
True if the first character is uppercase, false otherwise.
startsWithUppercase('Hello') // truestartsWithUppercase('world') // false Copy
startsWithUppercase('Hello') // truestartsWithUppercase('world') // false
Checks if a string starts with an uppercase letter.