js object destructuring without declaration code example
Example 1: typescript object destructuring
// declare an interface or a type
interface Person {
name: string;
age: string;
}
// destructure name and age from `obj` variable.
const { name, age }: Person = obj;
Example 2: js object destructuring
const { [propName]: identifier } = expression;