Skip to content

Instantly share code, notes, and snippets.

@ramazankanbur
Created May 12, 2020 22:31
Show Gist options
  • Save ramazankanbur/73003c794b2b826927e68d74d150792d to your computer and use it in GitHub Desktop.
Save ramazankanbur/73003c794b2b826927e68d74d150792d to your computer and use it in GitHub Desktop.
//ES5
var x = 0, y = 0;
obj = { x:x, y:y };
console.log(obj.x);
//ES6
var x = 0, y = 0;
obj = { x, y };
console.log(obj.x);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment