Skip to content

Instantly share code, notes, and snippets.

@jhesgodi
Created April 18, 2018 01:19
Show Gist options
  • Save jhesgodi/db68c7c764ab53cb49c778887f0fd20d to your computer and use it in GitHub Desktop.
Save jhesgodi/db68c7c764ab53cb49c778887f0fd20d to your computer and use it in GitHub Desktop.
const data = { foo: 'bar', bar: 'foo' }
Object.entries(data).forEach(([key, value]) => {
console.log(key, value)
})
// foo bar
// bar foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment