你想把字符串转换成小写形式。
使用JavaScript的String的toLowerCase()方法:
"ONE TWO THREE".toLowerCase()
# => 'one two three'
toLowerCase()是一个标准的JavaScript方法。不要忘了带圆括号。
通过下面的快捷方式可以添加某种类似Ruby的语法块:
String::downcase = -> @toLowerCase()
"ONE TWO THREE".downcase()
# => 'one two three'
上面的代码演示了CoffeeScript的两个特性:
.prototype
的快捷方式;上面的代码会编译成如下JavaScript代码:
String.prototype.downcase = function() {
return this.toLowerCase();
};
"ONE TWO THREE".downcase();
提示 尽管上面的用法在类似Ruby的语言中很常见,但在JavaScript中对本地对象的扩展经常被视为不好的。(请看:Maintainable JavaScript: Don’t modify objects you don’t own;Extending built-in native objects. Evil or not?)