關於數組的10個操做方法!

1.shift() 方法:把數組的第一個元素刪除,並返回第一個元素的值數組 var movePos=[1,2]; movePos.shift() console.log(movePos)//[2]spa document.write(movePos.length);//13d 2.concat() 方法:用於鏈接兩個或多個數組,並返回一個新數組,新數組是將參數添加到原數組中構成的 排序   3. 
相關文章
相關標籤/搜索