# Classical inheritance in JS using Object.create()


function Shape() {
    this.x = 0;
    this.y = 0;
}
