作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
来自Python,我喜欢Coffeescript从Python和Perl借来的许多功能(范围/ slice ,理解,破坏性分配)。 Coffeescript中是否有任何语法糖可以模仿Python的enumerate
或zip
(itertools.izip
)函数?
以下是我不太关心的模式:
# an enumerate call would be helpful here
i = 0
for x in arr
... use x and i ...
i++
# a zip would be useful here
n = Math.min(arr1.length,arr2.length)
for i in 0...n
x = arr1[i]; y = arr2[i]
... use x and y ...
最佳答案
forEach有效地内置于:
a = ['a','b','c']
for el,i in a
alert "Element #{el} is at index #{i}"
关于list-comprehension - 枚举并在Coffeescript中压缩?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5615887/
我是一名优秀的程序员,十分优秀!