Object
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
TypeScript โฉ Object Types
// โญ๏ธ anonymous
// โญโโโโโโโโ anonymous โโโโโโโโโฎ
function greet(person: { name: string; age: number }) {
return "Hello " + person.name;
}
// โญ๏ธ interface