我有一个班级:
class Rectangle {
constructor(height, width) {
this.height = height;
this.width = width;
}
}
如何在没有height
实例的情况下将属性width
和Rectangle
作为字符串?
答案 0 :(得分:1)
您仍然必须至少动态创建一个空实例:
class Rectangle {
constructor(height, width) {
this.height = height;
this.width = width;
}
}
console.log(Reflect.ownKeys(new Rectangle))