Classical inheritance in JS using Object.create()Adarsh Konchady·Aug 6, 2014·1 min readfunction Shape() { this.x = 0; this.y = 0; } Share this