CoffeeScript 字符串 - toLowerCase()



说明

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

语法

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

string.toLowerCase( )

示例

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

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

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

  console.log(str.toLowerCase());

}).call(this);

然后打开命令提示符并按照如下所示编译该 .coffee 文件。

c:\> coffee -c coffee tolowercase.coffee 

编译后,将得到以下 JavaScript。

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

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

  console.log(str.toLowerCase());

}).call(this);

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

c:\> coffee tolowercase.coffee

执行后,CoffeeScript 文件将生成以下输出。

apples are round, and apples are juicy.
coffeescript_strings.htm
广告