摘要: Javascript - 4 解构数组 const arr = [2, 3, 4]; const [x,y,z] = arr; // 2,3,4 const[first, second] = arr; console.log(first, second); // 2,3 const[first, , 阅读全文
posted @ 2025-04-02 13:09 wajiez 阅读(11) 评论(0) 推荐(0)