引用方法队列方法
Posted xiaoxustudy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了引用方法队列方法相关的知识,希望对你有一定的参考价值。
队列数据结构的访问方法是先进先出。在列表末端添加项,在前端移除项。
1 <script> 2 var arr1 = ["a","b","c",undefined,null]; 3 //shift() 4 //从数组前端取得项 5 //返回取得的项 6 console.log(arr1.shift()); //输出:a 7 console.log(arr1); //输出:(4) ["b", "c", undefined, null] 8 9 //unshift() 10 //从数组前端添加任意个项 11 //返回新数组的长度 12 console.log(arr1.unshift("QAQ","QwQ")); //输出:6 13 console.log(arr1); //输出:(6) ["QAQ", "QwQ", "b", "c", undefined, null] 14 </script>
shift()
从 数 组 前 端 取 得 项
unshift()
从 数 组 前 端 添 加 项
以上是关于引用方法队列方法的主要内容,如果未能解决你的问题,请参考以下文章