learning-zone / javascript-basics

JavaScript Basics
https://learning-zone.github.io/javascript-basics/
1.75k stars 616 forks source link

Q 7.9. What are default values in destructuring assignment? #30

Closed wojciech-lasota closed 1 year ago

wojciech-lasota commented 1 year ago

Object Destructuring:

const { i = 2, j = 4, k = 6 } = { n: 10 };

console.log("i: " + i); // 10 -> should be 2 console.log("j: " + j); // 4 console.log("k: " + k); // 6

learning-zone commented 1 year ago

Thanks for the issue. It has been corrected now.