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 - 字符串