CoffeeScript For 循环

For 循环

问题

你想通过一个for循环来迭代数组、对象或范围。

解决方案

# for(i = 1; i<= 10; i++)
x for x in [1..10]
# => [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ]

# To count by 2
# for(i=1; i<= 10; i=i+2)
x for x in [1..10] by 2
# => [ 1, 3, 5, 7, 9 ]

# Perform a simple operation like squaring each item.
x * x for x in [1..10]
# = > [1,4,9,16,25,36,49,64,81,100]

讨论

CoffeeScript使用推导(comprehension)来代替for循环,这些推导最终会被编译成JavaScript中等价的for循环。

作者:admin,如若转载,请注明出处:https://www.web176.com/coffeescript/10699.html

(0)
打赏 支付宝 支付宝 微信 微信
adminadmin
上一篇 2023年2月26日
下一篇 2023年2月26日

相关推荐

发表回复

登录后才能评论