数组移除元素

2019-10-24  本文已影响0人  浪浪山小妖_

数组移除元素

   // 移除无效元素 ---forEach()不行
   // res.forEach((el, i,array) => {
   //   if (el.items==null) {
   //     array.splice(i, 1);
   //     i--
   //   }
   // });
   for (let i = 0; i < res.length; i++) {
     res.splice(i, 1);
     i--
   }

--by Affandi ⊙▽⊙

上一篇下一篇

猜你喜欢

热点阅读