Return a new string with the text all in upper case.
返回一个新的字符串,其中的文本全部为大写。
Does not mutate the original string.
不变异原始字串。
Does not accept any parameter.
不接受任何参数。
Usage:
用法:
'Testing'.toUpperCase() //'TESTING'
If you pass an empty string, it returns an empty string.
如果传递一个空字符串,它将返回一个空字符串。
It’s similar to toLocaleUpperCase()
, but does not consider locales at all.
它类似于toLocaleUpperCase()
,但完全不考虑语言环境。