重学ES系列之过滤数组

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>过滤数组</title>
</head>
<body>
<script>
let arr = [1,2,4];
let newArr = arr.filter((e)=>e!==1);
console.log(newArr);
</script>
</body>
</html>

 

更多内容请见原文,原文转载自:https://blog.csdn.net/weixin_44519496/article/details/119862007

posted @ 2022-06-14 15:21  忘川信使  阅读(176)  评论(0编辑  收藏  举报