我发现,在编写快速脚本时,我的很多咖啡代码都包含这样的块:
somevariable =
someotherglobalvariable =
yetanotherglobalvariable = undefined
有没有更漂亮的方法来写这个?
答案 0 :(得分:0)
我认为对于更漂亮/更清洁的代码,您应该避免链初始化。
somevariable = undefined
someotherglobalvariable = undefined
yetanotherglobalvariable = undefined