Skip to content

Instantly share code, notes, and snippets.

@toshvelaga
Created October 25, 2021 04:09
Show Gist options
  • Select an option

  • Save toshvelaga/5d1b9a1b96cb49dcc66673efe6c58ce6 to your computer and use it in GitHub Desktop.

Select an option

Save toshvelaga/5d1b9a1b96cb49dcc66673efe6c58ce6 to your computer and use it in GitHub Desktop.
let beer = [
['name', 'Hopadillo'],
['ABV', '6.6%'],
['price', '$2.00']
]
let beerFromEntries = Object.fromEntries(beer)
// console.log(beerFromEntries)
// {
// name:"Hopadillo",
// ABV:"6.6%",
// price:"$2.00"
// }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment