Skip to content

Instantly share code, notes, and snippets.

@DaniGithub
Created April 17, 2016 08:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DaniGithub/a3cfad677ad17913328f10ef80746aa4 to your computer and use it in GitHub Desktop.
Save DaniGithub/a3cfad677ad17913328f10ef80746aa4 to your computer and use it in GitHub Desktop.
Objects in JavaScript
var obj = {
a: "hello world",
b: 42
};
var b = "a";
obj[b]; // "hello world"
obj["b"]; // 42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment