Skip to content

js String prototype toLowerCase

Arsen Melikyan edited this page · 2 revisions
Clone this wiki locally

String.prototype.toLowerCase()

The JavaScript method .toLowerCase() returns the same string it was called on, but in all lower case.

Syntax

str.toLowerCase()

Examples


console.log("HELLO WORLD".toLowerCase()); // Console will output "hello world"

Source MDN

Something went wrong with that request. Please try again.