作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
for (i = 0; i < 10; i++) {
doStuff();
}
这是我想要转换为 CoffeeScript 的 JavaScript 代码。
最佳答案
doStuff() for i in [0 .. 9]
介绍页面对此进行了解释:http://coffeescript.org/#loops
由 JP 编辑/更新:
准确的翻译是:
doStuff() for i in [0...10]
您需要小心“..”与“...”,例如:
count = 0
doStuff() for i in [0..count] #still executes once!
所以你想,没问题...我将循环直到 count-1!
count = 0
doStuff() for i in [0..count-1] #executes twice!! '0' and then '-1'
字面翻译:
for (var i = 0; i < someCount; ++i)
doStuff()
是
for i in [0...someCount]
doStuff()
关于for-loop - 如何将 JavaScript for 循环转换为 CoffeeScript?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7337351/
我是一名优秀的程序员,十分优秀!