String.prototype.toLowerCase()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

toLowerCase() メソッドは、呼び出す文字列の値を小文字に変換して返します。

試してみましょう

構文

js
toLowerCase()

返値

呼び出す文字列の値を小文字に変換した新しい文字列です。

解説

toLowerCase() メソッドは、小文字に変換された文字列の値を返します。toLowerCase() メソッドは、文字列 str 自身の値には影響を与えません。

toLowerCase() メソッドの使用

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

仕様書

Specification
ECMAScript Language Specification
# sec-string.prototype.tolowercase

ブラウザーの互換性

BCD tables only load in the browser

関連情報