Converts the string to lowercase. An alias for toLowerCase().
toLowerCase()
This is null | undefined safe. If you pass null | undefined then this will return "".
null | undefined
""
lower(null); // ""lower("Hello WORLD"); // "hello world" Copy
lower(null); // ""lower("Hello WORLD"); // "hello world"
Converts the string to lowercase. An alias for
toLowerCase()
.