.toLowerCase()

Anonymous contributor's avatar
Anonymous contributor
Published Jun 19, 2021Updated Jan 9, 2024
Contribute to Docs

The .toLowerCase() method converts a string to lowercase letters in JavaScript.

Syntax

string.toLowerCase();

Example 1

Converting uppercase letters to lowercase letters:

console.log('HELLO WORLD'.toLowerCase());
// Output: hello world

Example 2

Don’t forget that .toLowerCase() doesn’t change the original string.

Code
Output
Loading...

Codebyte Example

The .toLowerCase() method will convert upper-case alphabet characters to lower-case in a string with other character types such as digits and special characters. Use the below code block to try the method:

Code
Output
Loading...

All contributors

Contribute to Docs

Learn JavaScript on Codecademy