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

  • Home
  • SEARCH
  • 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 7883879
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T04:39:04+00:00 2026-06-03T04:39:04+00:00

I found a code snippet for a forEach function on a tutorial website, and

  • 0

I found a code snippet for a forEach function on a tutorial website, and everything makes good sense to me except for the line that checks if i is in the array:

    if (i in this) {       

Why bother if we already have a for loop that has a stop condition?

if (!Array.prototype.forEach) {
Array.prototype.forEach = function(fun /*, thisp*/) {
    var len = this.length >>> 0;
    if (typeof fun != "function") {
        throw new TypeError();
    }

    var thisp = arguments[1];
    for (var i = 0; i < len; i++) {
        if (i in this) {
            fun.call(thisp, this[i], i, 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-03T04:39:06+00:00Added an answer on June 3, 2026 at 4:39 am

    Two reasons:

    1. Mutation by the callback

    Calling fun might change the array, since fun is entirely user-defined. So you need to check again.

    Example:

    array.forEach(function (el, i) { delete array[i + 1]; });
    

    2. Sparse arrays

    The other issue is that there can be sparse arrays: e.g.

    3 in ["a", "b", "c", , "e", "f"] === false
    // even though
    3 in ["a", "b", "c", undefined, "e", "f"] === true
    

    In those cases you don’t want to call fun for that index/element, since there is nothing at that index.

    ["a", "b", "c", , "e", "f"].forEach(function (el, i) {
        console.log(el + " at " + i);
    });
    // => "a at 0" "b at 1" "c at 2" "e at 4" "f at 5"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

VS 2008 I have this code snippet I found on a VB website. But
I found this code snippet on a different post that I don't quite understand
I searched this site and found a very useful snippet of code that i've
I have found some code snippet in the internet. But it is missing some
I'm reading Programming Perl , and I found this code snippet: sub new {
I found this snippet of code I am having trouble trying to find a
I've found this snippet of code on the net. It sets up an NSMutableArray
Another simple question. I found this really cool snippet of code: $date_str = Jan
I found code like this and can't find what it does $callback = function
I found this code online that has a procedure inside a procedure. I cannot

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.