运行 ❯
获取你
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Arrays</h1> <h2>The findLast() Method</h2> <p>findLast() returns the value of the last element in an array that passes a test (provided by a function):</p> <p id="demo"></p> <script> const ages = [3, 10, 18, 20]; document.getElementById("demo").innerHTML = ages.findLast(checkAge); function checkAge(age) { return age > 18; } </script> </body> </html>