跳到主要内容

JavaScript 字符串的toUpperCase()方法

toUpperCase() 方法返回转换为大写的字符串。

示例

const message = "javascript is fun";

// 将 message 转换为大写
const upperMessage = message.toUpperCase();
console.log(upperMessage);

// 输出:JAVASCRIPT IS FUN

toUpperCase() 语法

toUpperCase() 方法的语法是:

str.toUpperCase();

这里,str 是一个字符串。

toUpperCase() 参数

toUpperCase() 方法不接受任何参数。

toUpperCase() 返回值

  • 返回一个新字符串,表示调用的字符串转换为大写。

注意

  • 当在 nullundefined 上调用时,toUpperCase() 方法会引发 TypeError
  • toUpperCase() 方法不会更改原始字符串。

示例:使用 toUpperCase() 方法

let str = "Hello World!";
let sentence = "Java is to JavaScript what Car is to Carpet.";

let uppercase_str = str.toUpperCase();
console.log(uppercase_str); // HELLO WORLD!

let uppercase = sentence.toUpperCase();
console.log(uppercase); // JAVA IS TO JAVASCRIPT WHAT CAR IS TO CARPET.

输出

HELLO WORLD!
JAVA IS TO JAVASCRIPT WHAT CAR IS TO CARPET.

推荐阅读: JavaScript String toLowerCase()