Skip to content

Instantly share code, notes, and snippets.

@jbeard4
Created May 24, 2012 13:43
Show Gist options
  • Save jbeard4/2781615 to your computer and use it in GitHub Desktop.
Save jbeard4/2781615 to your computer and use it in GitHub Desktop.
function getObj(){
//create a new object with a property and method, and return it
//the goal will be to call the method from java
return {
x : 1,
getX : function(){
return this.x;
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment