Converts string, as space separated words, to lower case.
string
Optional
The string to convert.
Returns the lower cased string.
4.0.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.