Skip to content

Instantly share code, notes, and snippets.

@samueljackson92
Created March 12, 2013 14:36
Show Gist options
  • Save samueljackson92/5143385 to your computer and use it in GitHub Desktop.
Save samueljackson92/5143385 to your computer and use it in GitHub Desktop.
JSON object notion example for Connor
var ar = {
"Hello": {
score: 12,
run: function()
{
return "hi";
}
}
};
console.log(ar.Hello.run());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment