有没有更优雅的方式在coffeescript中声明全局变量?

时间:2015-10-25 17:14:05

标签: coffeescript

我发现,在编写快速脚本时,我的很多咖啡代码都包含这样的块:

somevariable = 
someotherglobalvariable = 
yetanotherglobalvariable = undefined

有没有更漂亮的方法来写这个?

1 个答案:

答案 0 :(得分:0)

我认为对于更漂亮/更清洁的代码,您应该避免链初始化。

somevariable = undefined
someotherglobalvariable = undefined 
yetanotherglobalvariable = undefined