我无法弄清楚如何使用PogoScript中的变量索引数组。
常量似乎有效:
xs = ['beef','wellington','ensemble']
console.log (xs.1) // prints wellington
但变量没有:
xs = ['beef','wellington','ensemble']
i = 1
console.log (xs.i) // prints undefined
有什么想法吗?
答案 0 :(得分:2)
上周这个问题本身也无法解决。
我在PogoScript GitHub页面上创建了一张票,并在那里得到了答案。
您需要在变量周围放置括号以索引数组:
xs = ['beef','wellington','ensemble']
i = 1
console.log (xs.(i)) // prints wellington
Cheat Sheet现已更新了此信息!