convert string to all lower case code example
Example 1: how to convert whole strig in lowercase in js
var str = "Hello World!";
var res = str.toLowerCase();
Example 2: python string lowercase
startString = "TeST StrIng"
lowerCaseString = startString.lower()
print(lowerCaseString)
# Output -> "test string"