Converts string, as space separated words, to lower case.
string
The string to convert.
Returns the lower cased string.
5.6.0
camelCase, kebabCase, snakeCase, startCase, upperCase, upperFirst
lowerCase('--Foo-Bar--')// => 'foo bar'lowerCase('fooBar')// => 'foo bar'lowerCase('__FOO_BAR__')// => 'foo bar' Copy
lowerCase('--Foo-Bar--')// => 'foo bar'lowerCase('fooBar')// => 'foo bar'lowerCase('__FOO_BAR__')// => 'foo bar'
Converts
string
, as space separated words, to lower case.