es6 对象简化写法-函数

表达式还可以用于定义方法名。

let obj = {
  ['h' + 'ello']() {
    return 'hi';
  }
};

obj.hello() // hi

 

你可能感兴趣的:(es6 对象简化写法-函数)