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

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