Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can I ask what mean .length property in the array variable? I look through many article and many of them stated that .length return the number of string. So can anyone give me an answer? Below is the code:

<script type="text/javascript">
var mycars = new Array();
mycars[0] = "Saab";
mycars[1] = "Volvo";
mycars[2] = "BMW";

for (i=0;i<mycars.length;i++)
{
document.write(mycars[i] + "<br />");
}
</script>
share|improve this question

1 Answer

up vote 4 down vote accepted

.length returns the number of elements in the array...that's how many items you need to iterate over in your for loop when looking at all of them.

share|improve this answer
Oh so you are there now +1 ;-) – Sarfraz Dec 31 '10 at 8:58
@Sarfraz - Was out getting furniture for the new place all of yesterday ;) – Nick Craver Dec 31 '10 at 8:58
Well congratz and happy new year :) – Sarfraz Dec 31 '10 at 8:59
@Sarfraz - thanks!, happy holidays to you as well :) – Nick Craver Dec 31 '10 at 8:59
Thanks, answer will be accepted in 5 minuites. Happy New Year!! – dramasea Dec 31 '10 at 9:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.