String.prototype.toLowerCase()

String 值的 toLowerCase() 方法返回转换为小写的字符串。

¥The toLowerCase() method of String values returns this string converted to lower case.

Try it

语法

¥Syntax

js
toLowerCase()

参数

¥Parameters

没有任何。

¥None.

返回值

¥Return value

表示调用字符串转换为小写的新字符串。

¥A new string representing the calling string converted to lower case.

描述

¥Description

toLowerCase() 方法返回转换为小写的字符串值。toLowerCase() 不影响字符串 str 本身的值。

¥The toLowerCase() method returns the value of the string converted to lower case. toLowerCase() does not affect the value of the string str itself.

示例

¥Examples

使用 toLowerCase()

¥Using toLowerCase()

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

规范

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

¥Specifications

浏览器兼容性

BCD tables only load in the browser

¥Browser compatibility

也可以看看