[ Web Proxy ]
URL:
Viewing: https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/String/toLowerCase [Back]  [Original]

String.prototype.toLowerCase() - JavaScript | MDN

This page was translated from English by the community. Learn more and join the MDN Web Docs community.

View in English Always switch to English

String.prototype.toLowerCase()

Baseline Widely available

This feature is well established and works across many devices and browser versions. Its been available across browsers since 2015 7.

String toLowerCase() .

In this article

const sentence = "The quick brown fox jumps over the lazy dog.";

console.log(sentence.toLowerCase());
// Expected output: "the quick brown fox jumps over the lazy dog."

js
toLowerCase()

.

.

toLowerCase() . toLowerCase() str .

toLowerCase()

js
console.log("ALPHABET".toLowerCase()); // 'alphabet'

Specification
ECMAScript 2027 LanguageSpecification
# sec-string.prototype.tolowercase


Web Proxy Viewer  |  New URL  |  Original Page