我正在尝试学习JavaScript ES6,这是一种非常酷的语言,我认为我应该练习一下,但我无法进行练习.那么我如何使用object literal复制一个类.
例如,该类是:
class Point {
constructor(x, y) {
this.x = x, this.y = y
}
add(other) {
return new Point(this.x + other.x, this.y + other.y)
}
}
Run Code Online (Sandbox Code Playgroud)
我想在这里使用object literal做一些事情来使输出成为真.
var fakePoint = YOUR_CODE_HERE
console.log(fakePoint instanceof Point)
Run Code Online (Sandbox Code Playgroud)