gpt4 book ai didi

javascript - 在循环中迭代上一个下一个

转载 作者:行者123 更新时间:2023-11-29 15:34:38 26 4
gpt4 key购买 nike

有没有一种很好的惯用方法可以在 Coffeescript 中迭代一个数组,但同时访问循环中的当前项和下一项?例如在 Python 中你可以这样做:

[f(current, next) for current, next in zip(a, a[1:])]

最佳答案

这样的事情怎么样?

array = ['a', 'b', 'c', 'd']

for value, index in array
current = value
next = if array[index+1] then array[index+1] else null
alert "#{current} at #{index} #{next}"

关于javascript - 在循环中迭代上一个下一个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30786096/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com