Converts all the alphabetic characters in a string to lowercase.
SyntaxstrVariable.toLowerCase()
"String Literal".toLowerCase()
Examples
The following example demonstrates the effects of the toLowerCase method.
var str1 = "This is a STRING.";
var str2 = str1. toLowerCase();
document.write(str2);
Remarks
The toLowerCase method has no effect on non-alphabetic characters.
See also Other articles AttributionsMicrosoft Developer Network: Article
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4