If you want a true copy of nested arrays, you'll need a deep clone. For deep clones, go with ... const numbers = [1, [2], [3, [4]], 5]; // Using JavaScript ...
確定! 回上一頁