变量作为对象的key使用

js对象的key可以通过中括号引用变量来动态设置key值

const key = 'name';
const obj = {
  [key]: 'Tom'
}

你可能感兴趣的:(变量作为对象的key使用)