发布于 2015-09-04 01:32:55 | 202 次阅读 | 评论: 0 | 来源: 网友投递
这里有新鲜出炉的CoffeeScript 中文手册,程序狗速度看过来!
CoffeeScript
CoffeeScript是一套JavaScript的转译语言,创建者 Jeremy Ashkenas 戏称它是- JavaScript 的不那么铺张的小兄弟。因为 CoffeeScript 会将类似 Ruby 语法的代码编译成 JavaScript,而且大部分结构都相似,但不同的是 CoffeeScript 拥有更严格的语法。
CoffeeScript 1.10.0 发布,更新内容如下:
CoffeeScript now supports ES6-style destructuring defaults.
(offsetHeight: height) ->
no longer compiles. That syntax was accidental and partly broken. Use ({offsetHeight: height}) ->
instead. Object destructuring always requires braces.
Several minor bug fixes, including:
A bug where the REPL would sometimes report valid code as invalid, based on what you had typed earlier.
A problem with multiple JS contexts in the jest test framework.
An error in io.js where strict mode is set on internal modules.
A variable name clash for the caught error in catch
blocks.
详细信息请查看更新日志。
下载页面:1.10.0。
CoffeeScript是一套JavaScript的转译语言,创建者 Jeremy Ashkenas 戏称它是- JavaScript 的不那么铺张的小兄弟。因为 CoffeeScript 会将类似 Ruby 语法的代码编译成 JavaScript,而且大部分结构都相似,但不同的是 CoffeeScript 拥有更严格的语法。
先来看下对比代码(左为CoffeeScript):