如何将字典的键设置为变量的值?

时间:2018-07-17 07:38:15

标签: google-apps-script

我有一些变量定义为:

function test() {
  var foo = 'bar'
  var dict = {
    foo: 'haha'
  }
  Logger.log(dict['foo'])  // haha
  Logger.log(dict[foo])    // undefined. I expected this to return 'haha'. But I was wrong.
}

是否可以使用变量bar创建一个包含foo作为其键的字典?

我的意思是我想通过使用变量'haha'来获得foo

0 个答案:

没有答案