Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8410623
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T00:13:35+00:00 2026-06-10T00:13:35+00:00

Possible Duplicate: JavaScript for…in vs for difference between for..in and for loops, and counter

  • 0

Possible Duplicate:
JavaScript for…in vs for
difference between for..in and for loops, and counter declaration

Is there any particular reason that for loops in arrays should be coded like for (var i = 0; i < foo.length; i++) { whereas loops in objects are just for (var i in foo) { Is it because of how objects are set up vs how arrays are set up? (I know arrays are a type of object btw) or just another nitpicky programming convention.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T00:13:36+00:00Added an answer on June 10, 2026 at 12:13 am

    Well, the main reason is because for...in only iterate over defined members.

    So,

    var arr = [];
    arr[10] = "hi";
    for(var x in arr)
    {
        alert(x);
    }
    

    will only show the one value that is defined. Sometimes this is a good thing– usually not.

    Also, for...in loops over properties, not array indices (in javascript an array is just an a regular object with properties whose names are the values you assign to the array)

    So when you use for..in you can get weird results, like:

    1

    2

    3

    length

    toString

    etc.

    Using the typical for syntax is just the better option for arrays. With objects, the for...in makes more sense, since the undefined issues don’t come up as often. Either way, I like to use the for(var x; x < y; x++) syntax, though. It just feels better in js.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Is there a difference between (function() {…}()); and (function() {…})();? I've seen
Possible Duplicate: JavaScript “For …in” with Arrays I looped over various arrays using for-in
Possible Duplicate: Location of parenthesis for auto-executing anonymous JavaScript functions? Is there a difference
Possible Duplicate: Javascript callback when IFRAME is finished loading? Is there any way to
Possible Duplicate: JavaScript: var functionName = function() {} vs function functionName() {} AFAIK, there
Possible Duplicate: Javascript sleep How to delay execution in between the following in my
Possible Duplicate: JavaScript for…in vs for I am using a for loop in my
Possible Duplicate: Javascript closure inside loops - simple practical example How can I make
Possible Duplicate: Javascript switch vs. if…else if…else just curious if things will run faster
Possible Duplicate: What does this mean? (function (x,y)){…}){a,b); in JavaScript I have the following

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.