JavaScript String toLowerCase()

Total
0
Shares

In this tutorial, we will learn about the JavaScript String toLowerCase() method with examples.

The JavaScript String toLowerCase() method converts the string into lowercase and returns a new string.

toLowerCase() Example

// JavaScript Program to illustrate toLowerCase() function

const text = "WELCOME TO JAVASCRIPT WORLD";

// convert uppercase to lowercase
const lowerCaseText = text.toLowerCase();
console.log(lowerCaseText)


// Output: welcome to javascript world

toLowerCase() Syntax

The syntax of the JavaScript toLowerCase() method is as follows.

str.toLowerCase()

Here the str is the string or the string variable.

toLowerCase() Parameter

The JavaScript toLowerCase() method does not accept any arguments.

toLowerCase() Return Value

The toLowerCase() method converts the given string into lowercase and returns it as a new string. The original string value remains unaffected.

Note: The toLowerCase() method raises TypeError when called on null or undefined.

Example: JavaScript Convert string from uppercase to lowercase

// JavaScript Program to illustrate toLowerCase() function

const text1 = "HELLO WORLD";
const text2 = "JAvAsCRIpt iS FuN";

console.log(text1.toLowerCase());
console.log(text2.toLowerCase());

Output

hello world
javascript is fun
Leave a Reply

Your email address will not be published. Required fields are marked *

Sign Up for Our Newsletters

Get notified on the latest articles

You May Also Like
JavaScript String slice()

JavaScript String slice()

Table of Contents Hide slice() Exampleslice() Syntaxslice() Parameterslice() Return ValueExample 1: Using JavaScript String slice() methodExample 2: Using slice() method with negative indices In this tutorial, we will learn about…
View Post