简单教程
提交运行
代码编辑器:
<p>点击按钮获取数组中年龄大于 18 的第一个元素索引位置</p> <button onclick="myFunction()">点我</button> <p id="demo"></p> <p><strong>注意:</strong> IE 11 及更早版本不支持 findIndex() 方法</p> <script> var ages = [3, 10, 18, 20]; function checkAdult(age) { return age >= 18; } function myFunction() { document.getElementById("demo").innerHTML = ages.findIndex(checkAdult); } </script>
运行结果: