Skip to content

Instantly share code, notes, and snippets.

@shahab570
Created January 2, 2021 18:28
Show Gist options
  • Save shahab570/271b856dd663c2b27d486edbe9e607ae to your computer and use it in GitHub Desktop.
Save shahab570/271b856dd663c2b27d486edbe9e607ae to your computer and use it in GitHub Desktop.
const x = {
name: "John",
age: 52,
};
for (var [key, value] of Object.entries(x)) {
console.log(key + " " + value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment