Skip to content

Instantly share code, notes, and snippets.

@numa08
Created February 18, 2014 17:12
Show Gist options
  • Save numa08/9075254 to your computer and use it in GitHub Desktop.
Save numa08/9075254 to your computer and use it in GitHub Desktop.
var w = {
width : 100,
height: 200,
center : function() {
return {
x : this.width /2,
y : this.height/2
};
}
};
@numa08
Copy link
Author

numa08 commented Feb 18, 2014

w.center().x; //50
w.center().y //100

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment