队列数据结构的访问方法是先进先出。在列表末端添加项,在前端移除项。
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()
从 数 组 前 端 添 加 项
原文地址:https://www.cnblogs.com/xiaoxuStudy/p/12246908.html
时间: 2024-11-10 13:09:37