Skip to content

Instantly share code, notes, and snippets.

@ilearnjavascript
Created March 27, 2019 23:24
Show Gist options
  • Save ilearnjavascript/0e46a0633268b613ff3955261f710a9d to your computer and use it in GitHub Desktop.
Save ilearnjavascript/0e46a0633268b613ff3955261f710a9d to your computer and use it in GitHub Desktop.
es6 - new methods - 17.js
var obj = { foo: 'bar', baz: 42 };
console.log(Object.entries(obj));
// outputs:
// (2) [Array(2), Array(2)]
// 0: (2) ["foo", "bar"]
// 1: (2) ["baz", 42]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment