Quick actions

cmd+k|ctrl+k

Navigation

Languages

Test Spread Op

Snippet info

Language

TypeScript

Visibility

public

Author

ubaidillah.hf

Created

2021-10-07T04:49:11.665791Z

Updated

2021-10-07T04:49:11.665791Z

type Human = {
    name: string,
    age: number,
    school: string
}

const ubed:Human = {
    name: "Ubaidillah",
    age: 24,
    school: "CYEK"
}

console.log({...ubed, school:"Brawijaya"})
INFO