Created
October 25, 2021 04:09
-
-
Save toshvelaga/5d1b9a1b96cb49dcc66673efe6c58ce6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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