前头增 arr.unshift(参数);返回的是当前长度
后头增arr.push(参数)返回的是当前长度;
末尾删除 arr.pop(无参数)返回的是删除的元素
开头删除arr.shift(无参数)返回的是删除的元素