Skip to content

lower

lower(string) → string · String

Alias for lowerCase(). Convert a string to all lowercase.

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

Released under AGPL-3.0.