JS String Prototype ToLowerCase - ashish9342/FreeCodeCamp GitHub Wiki

JavaScript 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

⚠️ **GitHub.com Fallback** ⚠️