const name value 3d event target

Solutions on MaxInterview for const name value 3d event target by the best coders in the world

showing results for - "const name value 3d event target"
Dympna
24 Apr 2019
1let person = {
2  name: 'David',
3  age: 15,
4  job: 'Programmer'
5}
6
7const { name, age } = person; // Takes the property/method from the object
8
9console.log(name); // Prints 'David'
10console.log(age); // Prints '15'