Skip to content

Instantly share code, notes, and snippets.

@bmorelli25
Created August 2, 2017 19:07
Show Gist options
  • Save bmorelli25/614c087e4410def3c2ad03f58ea0c24d to your computer and use it in GitHub Desktop.
Save bmorelli25/614c087e4410def3c2ad03f58ea0c24d to your computer and use it in GitHub Desktop.
Object.entries() + padEnd() example
const data = {
Portland: '78/50',
Dublin: '88/52',
Lima: '58/40'
}
Object.entries(data).map(([city, temp]) => {
console.log(`City: ${city} Weather: ${temp}`)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment