Function convertToUpperCase

将整个字符串转换为大写

将输入字符串中的所有字符转换为大写形式。

const result = convertToUpperCase("hello");
console.log(result); // 输出 "HELLO"
  • Parameters

    • str: string

      输入的字符串

    Returns string

    转换后的大写字符串