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 发布文章使用:只允许注册用户才可以访问!