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 7818099
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T06:27:47+00:00 2026-06-02T06:27:47+00:00

This has bothered me for a while, see my jsfiddle: http://jsfiddle.net/DHR8Q/ , which contains

  • 0

This has bothered me for a while, see my jsfiddle: http://jsfiddle.net/DHR8Q/, which contains the following javascript code:

var id = "11111;22222;33333";

id = id.split(";");

alert(typeof id);

for (var i in id){
    alert(id[i]);
}​

When I split the variable id by the character “;”, then I use the for loop, I would assume that i == 0,1,2 because the string id was split into 3 parts, but this is not what happens. In reality i == 0,1,2,3,4.... Why does JavaScript do this?

  • 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-02T06:27:48+00:00Added an answer on June 2, 2026 at 6:27 am

    This is because for... in iterates over all properties of an object (including those from the prototype).

    When you for... in over an array, you get the array elements, as well as the length property, and any properties of Array.prototype.

    You can fix this by using hasOwnProperty:

    for (var i in id){
        if(id.hasOwnProperty(i){
            alert(id[i]);
        }
    }​
    

    Though, I suggest not using for... in for arrays, use forEach:

    id.forEach(function(v){
        alert(v);
    });
    

    Or a good ol’ for loop:

    for(var i=0, len=id.length; i<len; i++){
        alert(id[i]);
    }
    

    EDIT

    The forEach function is not available as a built-in on back-level browsers, so you can do this:

    if (typeof Array.prototype.forEach !== 'function') {
        Array.prototype.forEach = function(fn, thisObj) {
            var scope = thisObj || window,  L = this.length, i;
            for (i=0; i < L; ++i) {
                fn.call(scope, this[i], i, this);
            }
        };
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This has bothered me for quite a while, but now it is necessity that
This problem has bothered me for a while and Im sure theres some sort
This has bothered me for a while and I've avoided it but the time
This has bothered me for a while and I'm tired of working around the
Simple but this has always bothered me. Which is the best way to condition
I think the answer to this question is so obivous that noone has bothered
This has been driving me crazy for a few days. Why doesn't the following
This has bothered me for awhile, and I have no clues if this is
This has always bothered me - why does the GROUP BY clause in a
This problem has bothered me for a long time.As we know,in mathematica we can

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.