js數組方法整理

js數組方法介紹 增長: push:在數組原有的基礎上的末尾,添加元素(改變當前數組,返回一個新的數組) var arr = [90, 5, 21, 80, 83, 1, 8, 17, 22]; arr.push(1) arr.push('1','a') arr.push([1,2]); console.log(arr);//[90, 5, 21, 80, 83, 1, 8, 17, 22, 1,
相關文章
相關標籤/搜索