Skip to main content

toLowerCase() in JavaScript – How to Convert String to Lowercase

Whenever you use toLowerCase() on a string, the method does the following:

  1. It converts its calling string to lowercase.
  2. It returns the new version of the calling string—without changing the original string.
note
  • A calling string is a string on which you used toLowerCase(). So, in "Hello, World!".toLowerCase(), "Hello, World!" is the calling string.
  • toLowerCase() is sometimes written as String.prototype.toLowerCase() because it is a method of the String object's prototype property.

Syntax of the toLowerCase() Method

toLowerCase() does not accept any argument. Here is the syntax:

callingString.toLowerCase();

Example 1: Convert CodeSweetly to Lowercase

"CodeSweetly".toLowerCase();

// The invocation above will return: "codesweetly"

Try Editing It

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"

Try Editing It

tip

To convert a string to uppercase, use toUpperCase().

Overview

String toLowerCase() method's
tidbit

Use the toLowerCase() method to convert your string to lowercase.

toLowerCase() returns the lowercase version of its calling string.

Your support matters: Buy me a coffee to support CodeSweetly's mission of simplifying coding concepts.

Join CodeSweetly Newsletter