Skip to content

Instantly share code, notes, and snippets.

@toshvelaga
Created October 24, 2021 03:40
Show Gist options
  • Select an option

  • Save toshvelaga/878d910661fecb3726f3099b3af27720 to your computer and use it in GitHub Desktop.

Select an option

Save toshvelaga/878d910661fecb3726f3099b3af27720 to your computer and use it in GitHub Desktop.
let beer = { name: 'Hopadillo', ABV: '6.6%', price: '$2.00' }
let beerBreweryLocation = { state: 'Texas' }
let beerObj = Object.assign(beer, beerBreweryLocation)
// console.log(beerObj)
// {
// name:"Hopadillo",
// ABV:"6.6%",
// price:"$2.00",
// state:"Texas"
// }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment