运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Arrays</h1> <h2>The filter() Method</h2> <p>Create a new array from all array elements that passes a test:</p> <p id="demo"></p> <script> const numbers = [45, 4, 9, 16, 25]; const over18 = numbers.filter(myFunction); document.getElementById("demo").innerHTML = over18; function myFunction(value, index, array) { return value > 18; } </script> </body> </html>