js array & unshift === push head
js array & unshift === push head
const arr = [1, 2, 3];
console.log(arr.unshift(4, 5));
// 5
console.log(arr);
// Array [4, 5, 1, 2, 3]
refs
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/unshift
©xgqfrms 2012-2020
www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!
本文首发于博客园,作者:xgqfrms,原文链接:https://www.cnblogs.com/xgqfrms/p/14305620.html
未经授权禁止转载,违者必究!