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