重學(xué)ES系列之過(guò)濾數(shù)組

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>過(guò)濾數(shù)組</title>
</head>
<body>
<script>
let arr = [1,2,4];
let newArr = arr.filter((e)=>e!==1);
console.log(newArr);
</script>
</body>
</html>

作者:Vam的金豆之路

主要領(lǐng)域:前端開(kāi)發(fā)

我的微信:maomin9761

微信公眾號(hào):前端歷劫之路