Back

Objectject Destructuring

Copy Below Code View As A Text File Show Text Only Show API Edit Code
                            

const address = { street: 'Street 11', city : 'ISD', country : 'PK' } const {street,city,country} =address; console.log(country);