摘要: 方法一:使用forEach遍历 let list = ['a','b','c','d','e'] list.forEach((item,index)=>{ if(item == 'c'){ list.splice(index,1) } }) console.log('forEach',list) 方 阅读全文
posted @ 2023-04-19 21:04 土著古 阅读(2520) 评论(0) 推荐(0) 编辑