Array.lastIndexOf()
- <!DOCTYPE html>
- <html>
- <body>
- <h1>JavaScript Array.lastIndexOf()</h1>
- <p id="demo"></p>
- <script>
- var fruits = ["Apple", "Orange", "Apple", "Mango"];
- var a = fruits.lastIndexOf("Apple");
- document.getElementById("demo").innerHTML = "Apple is found in position " + (a + 1);
- </script>
- <p>Internet Explorer 8 或更早的版本不支持 lastIndexOf()。</p>
- </body>
- </html>