If I have the following code:
<html>
<body>
<script type="text/javascript">
var mycars = new Array();
mycars[0] = "Saab";
mycars[1] = "Volvo";
mycars[2] = "BMW";
var x = 1;
document.write("Value of x: " + x + "<br /><br />");
for (x in mycars)
{
document.write(x + ": " + mycars[x] + "<br />");
}
document.write("<br />Value of x: " + x + "<br />");
document.write("Number of cars: " + mycars.length);
</script>
</body>
</html>
I get the output:
Value of x: 1
0: Saab
1: Volvo
2: BMW
Value of x: 2
Number of cars: 3
Without changing the for-in loop to a for loop, is there any way to make it so the first element ("Saab") is not displayed? I would like the output to be:
Value of x: 1
1: Volvo
2: BMW
Value of x: 2
Number of cars: 3