其他变量命名风格转小驼峰
camelCase('HELLO-WORLD'); // 'helloWorld'camelCase('hello-World'); // 'helloWorld'camelCase('hello world'); // 'helloWorld'camelCase('Hello world'); // 'helloWorld'camelCase('Hello___world'); // 'helloWorld' 复制
camelCase('HELLO-WORLD'); // 'helloWorld'camelCase('hello-World'); // 'helloWorld'camelCase('hello world'); // 'helloWorld'camelCase('Hello world'); // 'helloWorld'camelCase('Hello___world'); // 'helloWorld'
其他变量命名风格转小驼峰