javasscr ipt删除数组的3种方法1,用shift()方法shift:删除原数组第一项,并返回删除元素的值;如果数组为空则返回undefinedvar chaomao=[1,2,3,4,5]var chaomao.shift()//得到1alert(chaomao)//[2,3,4,5]
2,用pop()方法pop:删除原数组最后一项,并返回删除元素的值;如果数组为空则返回undefinedvar chaomao=[1,2,3,4,5]var chaomao.pop()//得到5aler