前言
解構賦值(Destructuring Assignment)是在ES6的一個新特性,讓我們在撰寫物件、陣列時可以把在裡頭的資料解開擷取成為獨立的變數,能夠更簡短並增加閱讀性。
以下為他的說明:
The destructuring assignment syntax is a JavaScript expression that makes it possible to extract data from arrays or objects using a syntax that mirrors the construction of array and object literals