Skip to content

Instantly share code, notes, and snippets.

@victorvhpg
Created November 7, 2016 22:33
Show Gist options
  • Save victorvhpg/d264b4cb86065e8e0b9b6e8560708ea5 to your computer and use it in GitHub Desktop.
Save victorvhpg/d264b4cb86065e8e0b9b6e8560708ea5 to your computer and use it in GitHub Desktop.
obj.js
var a = 1;
var b = 2;
var obj = {a, b};
console.log(obj); // {a: 1, b: 2}
//seria o mesmo que
var a = 1;
var b = 2;
var obj = {
a: a,
b: b
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment