Can you use destructuring assignment to assign default values to variables?
- Yes
- No
- Only for primitive data types
- Only for arrays
Yes, destructuring assignment in ES6 allows you to assign default values to variables. If the assigned value is undefined, the variable takes the default value specified. This feature enhances flexibility in handling variable assignments.
Loading...
Related Quiz
- To define a function as a method in an object literal, ES6 syntax does not require the ________ keyword.
- Can methods in ES6 classes be anonymous?
- To handle errors within a generator function, the _________ method can be used alongside next().
- How does 'this' behave within a static method?
- How can destructuring assignment be effectively used in React components to handle props and state?