CoffeeScript 字符串 - toUpperCase()

描述

此方法返回转换为大写的调用字符串值。


语法

下面给出的是 JavaScript 的 toUpperCase() 方法的语法。 我们可以在 CoffeeScript 代码中使用相同的方法。

string.toUpperCase( )

示例

以下示例演示了在 CoffeeScript 代码中使用 JavaScript 的 toUpperCase() 方法。 将此代码保存在名为 touppercase.coffee 的文件中

str = "Apples are round, and Apples are Juicy."
console.log str.toUpperCase( )

打开命令提示符并编译.coffee 文件,如下所示。

c:\> coffee -c coffee touppercase.coffee

在编译时,它会提供以下 JavaScript。

// Generated by CoffeeScript 1.10.0
(function() {
  var str;

  str = "Apples are round, and Apples are Juicy.";

  console.log(str.toUpperCase());

}).call(this);

现在,再次打开命令提示符 并运行 CoffeeScript 文件,如下所示。

c:\> coffee touppercase.coffee

执行时,CoffeeScript 文件产生以下输出。

APPLES ARE ROUND, AND APPLES ARE JUICY.

❮ CoffeeScript - 字符串