Skip to content

Instantly share code, notes, and snippets.

@gchacaltana
Created June 27, 2019 20:53
Show Gist options
  • Save gchacaltana/a2440c1d25978b4f19d028ccec1765a4 to your computer and use it in GitHub Desktop.
Save gchacaltana/a2440c1d25978b4f19d028ccec1765a4 to your computer and use it in GitHub Desktop.
Object.entries()
let twitter = {
name: "Gonzalo Chacaltana",
location: "Perú",
account: "@gchacaltanab"
};
console.log(Object.entries(twitter));
/* Expected Output
[
["name", "Gonzalo Chacaltana"],
["location", "Perú"],
["account", "@gchacaltanab"]
]
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment