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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T00:10:49+00:00 2026-06-04T00:10:49+00:00

See the following nodejs code with async : var async = require(‘async’); function inc(n,

  • 0

See the following nodejs code with async:

var async = require('async');

function inc(n, cb) {
    setTimeout(function() {
        cb(null, n+1);
    },1000);
};

var calls = [];

for(i=0;i<3;i++) {
    calls.push(function(cb){
        inc(i, cb);
    });
}

async.parallel(calls, function(err, results) {
    console.log(results);
});

It prints:

[4, 4, 4]

I don’t understand why the result isn’t [1, 2, 3]?

  • 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-04T00:10:50+00:00Added an answer on June 4, 2026 at 12:10 am

    Because every call in calls array references the same i variable, think this code:

    function fn() {
        var i = 1;
        setTimeout(function() { alert(i); }, 500);
        i++;
        i++;
    }
    fn();
    

    This, certainly, would output 3 instead of 1, this is the same issue of your code, the variable i changed before the call executes;

    To avoid this problem, wrap for loop with a Immediately Invoked Function Expression to create a new scope to store the value of i

    for (var i = 0; i < 3; i++) {
        (function(i) {
            calls.push(function(cb) { inc(i, cb); });
        }(i));
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Following is my nodejs code var emitter = require('events'), eventEmitter = new emitter.EventEmitter(); eventEmitter.on('data',
How can I implement cross browser opacity gradient (not color gradient)? See following code:
Please see the following code: List list = Collections.synchronizedList(new ArrayList()); // ... synchronized (list)
I wanted to test the following code (which works fine for a non-null list)
Frist see following code and images. Code A treeView1.Nodes.Add(Node A); treeView1.Nodes.Add(Node B); Output :
I have the following simple http server using Node.js: var http = require('http'); var
Please see following methods. public static ProductsCollection GetDummyData(int? customerId, int? supplierId) { try {
Please see following examples first, and which one is better? Could you compare some
See the following Mock Test by using Spring/Spring-MVC public class OrderTest { // SimpleFormController
I see the following in the declarations section at the top of a .cs

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.