Skip to content

Instantly share code, notes, and snippets.

@bmorelli25
Created August 2, 2017 19:10
Show Gist options
  • Save bmorelli25/228b88f52e7330962f5bc8a49a119074 to your computer and use it in GitHub Desktop.
Save bmorelli25/228b88f52e7330962f5bc8a49a119074 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.padEnd(16)} Weather: ${temp}`)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment