Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Який синтаксис правильно деструктуризує властивості name та age з об'єкта person?
name
age
person
const name = person.get('name');
const (name, age) = person;
const [name, age] = person;
const { name, age } = person;
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!