CoffeeScript:从第二个元素迭代

时间:2016-02-20 14:03:22

标签: coffeescript

如何使用这种理解从第二个元素开始迭代:

destroy c for c, i in container.children

this table

中找不到相关说明

1 个答案:

答案 0 :(得分:3)

你无法从理解中的任意位置开始。

相反,添加一个when条件,只检查迭代的索引是否大于第一个元素。

destroy c for c, i in container.children when i >= 1