lower()
Syntax
lower(string)
Returns a new string representing the value of string converted to lower case.
Examples
print(lower('ABc')); // 'abc'
lower(string)
Returns a new string representing the value of string converted to lower case.
print(lower('ABc')); // 'abc'