toLowerCase() in JavaScript – How to Convert String to Lowercase
Whenever you use toLowerCase() on a string, the method does the following:
- It converts its calling string to lowercase.
- It returns the new version of the calling string—without changing the original string.
Use the toLowerCase() method to convert your string to lowercase.
Syntax of the toLowerCase()
Method
Section titled “Syntax of the toLowerCase() Method”toLowerCase()
does not accept any argument. Here is the syntax:
callingString.toLowerCase();
Example 1: Convert CodeSweetly
to Lowercase
Section titled “Example 1: Convert CodeSweetly to Lowercase”"CodeSweetly".toLowerCase();
// The invocation above will return: "codesweetly"
Example 2: Convert a JavaScript String to Lowercase
Section titled “Example 2: Convert a JavaScript String to Lowercase”"FRIDAY, MY FRIEND, WAS BORN ON FRIDAY".toLowerCase();
// The invocation above will return: "friday, my friend, was born on friday"