Skip to content

Instantly share code, notes, and snippets.

@slick2
Created February 28, 2015 11:04
Show Gist options
  • Save slick2/42bb2c6105c6ee22c8b8 to your computer and use it in GitHub Desktop.
Save slick2/42bb2c6105c6ee22c8b8 to your computer and use it in GitHub Desktop.
Javascript Inherit
var unitcircle = function(){
this.r = 1;
};
var c = new unitcircle();
c.x = 1;
c.y = 1;
console.log(c);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment