Skip to content

Instantly share code, notes, and snippets.

@emkay
Created November 14, 2011 00:08
Show Gist options
  • Select an option

  • Save emkay/1362948 to your computer and use it in GitHub Desktop.

Select an option

Save emkay/1362948 to your computer and use it in GitHub Desktop.
Object Literal Example
var student = {
"name": "Bob Barker",
"age": 100
};
console.log(student.name);
console.log(student.age);
console.log(student["name"]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment