用循环替换行和列中的数据

时间:2017-04-29 05:37:31

标签: javascript for-loop google-apps-script google-sheets

我正在寻求帮助。我是gScript编码的新手。我一直在研究如何做具体的事情,但这段代码似乎很慢。为每一行添加了注释,以帮助其他人了解循环。

任何帮助都会很棒。我知道有一个更简单的方法来做到这一点,但只是不知道如何。

# generated in some way at runtime
bounds = [[0,10], [30,35], [-1, 2], [-30, 105], [132, 200006]]

# runtime value, not a constant
value = 45


for bound in bounds:
    if value >= bound[0] and value <= bound[1]:
        # do something with value

0 个答案:

没有答案