🍪🧁🍧
摘要: unshift 的用法详解 添加元素到数组头部 let arr=[1,2,3,4,5,6] let res=arr.unshift(0) console.log(arr) console.log(res) Array.prototype.MyUnShift=function(){ const len 阅读全文
posted @ 2025-04-16 22:47 不想吃fun 阅读(13) 评论(0) 推荐(0)