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