Unite Family
Given three objects
Sample Input
{'surname' : 'Jones', 'city': 'Los Angeles'}
{'dish': 'puddings'}
{'pet': 'Peter'}
Sample Output
Mr and Mrs Jones went to a picnic in Los Angeles with a boy and a pet Peter. Mrs Jones made a special dish "puddings"
// Just add following code
const family = {
surname: 'Jones',
city: 'Los Angeles',
pet: 'Peter',
dish: 'puddings'
}
Comments
Leave a comment