ES6一些有意思的新語法-結構數組

解構賦值語法是一個 Javascript 表達式,這使得能夠將值從數組或屬性從對象提取到不一樣的變量中。git 語法Edit var a, b, rest; [a, b] = [10, 20]; console.log(a); // 10 console.log(b); // 20 [a, b, ...rest] = [10, 20, 30, 40, 50]; console.log(a); /
相關文章
相關標籤/搜索