JSFiddle - React, Tailwind, and code Playground

JavaScript

const basePerson = {
	name: 'Nicky C',
  country: 'DK'
}

const footballerPerson = {
	...basePerson,
  team: 'Man UTD',
  shirtNumber: '11'
}

console.log(footballerPerson)