Skip to content

lowerCase

lowerCase(string) → string · String

Convert a string to all lowercase.

  • string (required): the string to convert
utlx
{
  result: lowerCase("Hello World")           // "hello world"
}

Also: camelCase, snakeCase, kebabCase, pascalCase, titleCase, dotCase, pathCase, constantCase, slugify.

Released under AGPL-3.0.