运行 ❯
获取您的
自有
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Arrays</h1> <h2>findIndex()</h2> <p>Click "Test" to return the index of the first array element that has a value above this number:</p> <p><input type="number" id="toCheck" value="18"></p> <button onclick="myFunction()">Test</button> <p id="demo"></p> <script> const numbers = [4, 12, 16, 20]; function checkValue(x) { return x > document.getElementById("toCheck").value; } function myFunction() { document.getElementById("demo").innerHTML = numbers.findIndex(checkValue); } </script> <p>findIndex() is not supported in Internet Explorer.</p> </body> </html>