Skip to content

Instantly share code, notes, and snippets.

@tondrej
Created November 11, 2018 20:36
Show Gist options
  • Save tondrej/6bd77631bb832d95c8b5086436285aa0 to your computer and use it in GitHub Desktop.
Save tondrej/6bd77631bb832d95c8b5086436285aa0 to your computer and use it in GitHub Desktop.
Square
function Square(x, y, w) {
Rectangle.call(this, x, y, w, w);
}
Square.prototype = Object.create(Rectangle.prototype);
Square.prototype.constructor = Square;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment