會改變原始陣列, push()、pop()、shift()、unshift()、reverse()、splice()、sort ... let a = 'abcde'; let b = Array.from(a); console.log(b); // ['a','b','c','d' ...
確定! 回上一頁