Edit This Code:
<!DOCTYPE html>
<html>
<body>

<p>Click the button to loop through the indices of an array named "cars", starting from the index number 2.</p>

<button onclick="myFunction()">Try it</button>

<p id="demo"></p>

<script>
function myFunction() {
    var cars = ["BMW", "Volvo", "Saab", "Ford"];
    var i = 2;
    var len = cars.length;
    var text = "";

    for (; i < len; i++) {
        text += cars[i] + "<br>";
    }

    document.getElementById("demo").innerHTML = text;
}
</script>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy