Skip to content

Instantly share code, notes, and snippets.

@ryanneufeld
Created October 5, 2012 13:52
Show Gist options
  • Save ryanneufeld/3839906 to your computer and use it in GitHub Desktop.
Save ryanneufeld/3839906 to your computer and use it in GitHub Desktop.
Object literal example.
var myObj = {
foo : "bar",
bar : "baz",
baz : 3.14
};
// then you can
myObj.foo === 'bar';
//OR
myObj['foo'] === 'bar';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment