es5 - array - shift
Posted cisum
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了es5 - array - shift相关的知识,希望对你有一定的参考价值。
1 /**
2 * 描述:该shift()方法从数组中删除第一个元素并返回已删除的元素。此方法更改数组的长度。
3 * 语法:arr.shift()
4 * 返回:该shift方法删除零点索引处的元素并将连续索引处的值向下移动,然后返回已删除的值。如果length属性为0,undefined则返回。
5 */
6 var a = [1, 2, 5, 7, 10];
7 var b = a.shift();
8
9 console.log(a,b);
以上是关于es5 - array - shift的主要内容,如果未能解决你的问题,请参考以下文章
ElasticSearch学习问题记录——Invalid shift value in prefixCoded bytes (is encoded value really an INT?)(代码片段