es6-destructuring Flashcards

1
Q

What is destructuring, conceptually?

A

using properties in an object to create variables

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the syntax for Object destructuring?

A

const {}= object name

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the syntax for Array destructuring?

A

putting array pairs in const , then using key pairs to extract value

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How can you tell the difference between destructuring and creating Object/Array literals?

A

the reassingment for desturcturing happends at the end

How well did you know this?
1
Not at all
2
3
4
5
Perfectly