Skip to content

Instantly share code, notes, and snippets.

@TheBeege
Last active January 4, 2016 23:33
Show Gist options
  • Save TheBeege/381445ca05c8727ddb5d to your computer and use it in GitHub Desktop.
Save TheBeege/381445ca05c8727ddb5d to your computer and use it in GitHub Desktop.
Variable Access
var obj = {};
obj.a = 1;
obj.b = 2;
var reallyA = "a"
console.log("obj.a: " + obj.a);
console.log("obj['a']: " + obj["a"]);
console.log("obj[reallyA]: " + obj[reallyA]);
// obj.a: 1
// obj['a']: 1
// obj[reallyA]: 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment