Checks if a string is in camelCase format.
The input string.
True if the string is camelCase.
isCamelCase("helloWorld") // trueisCamelCase("HelloWorld") // false Copy
isCamelCase("helloWorld") // trueisCamelCase("HelloWorld") // false
Checks if a string is in camelCase format.