.toLowerCase()

Anonymous contributor's avatar'
Anonymous contributor
Anonymous contributor's avatar'
Anonymous contributor
Published Jun 19, 2021Updated Dec 9, 2021
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 actually change the original string.

Code
Output
Loading...

All contributors

Looking to contribute?

Learn JavaScript on Codecademy