Rumah > Soal Jawab > teks badan
let methodName = 'getArea';
class Square{
constructor(length){
//..
}
[methodName](){
//..
}
}
在《ES6标准入门》中,18章讲到:
类的属性名可以采用表达式。
看不明白[]
在这里的用途?
我知道的[]
的用途:
声明数组
取数组成员
定义对象成员
取对象成员
这四个用途都跟上面代码中的[]
用法不沾边呀(o´・ェ・`o)