Const
Matches strict camelCase strings.
A valid camelCase string:
CAMEL_CASE_REGEX.test("helloWorld"); // trueCAMEL_CASE_REGEX.test("myVar1Name"); // trueCAMEL_CASE_REGEX.test("hello"); // falseCAMEL_CASE_REGEX.test("HelloWorld"); // falseCAMEL_CASE_REGEX.test("hello_world"); // false Copy
CAMEL_CASE_REGEX.test("helloWorld"); // trueCAMEL_CASE_REGEX.test("myVar1Name"); // trueCAMEL_CASE_REGEX.test("hello"); // falseCAMEL_CASE_REGEX.test("HelloWorld"); // falseCAMEL_CASE_REGEX.test("hello_world"); // false
Matches strict camelCase strings.
A valid camelCase string: