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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T19:54:58+00:00 2026-05-28T19:54:58+00:00

What do the two expressions var i = 0, item; item = a[i++]; mean?

  • 0

What do the two expressions var i = 0, item; item = a[i++]; mean?

for (var i = 0, item; item = a[i++];) {  
    // Do something with item  
}  

Apparently this is an alternative to

for (var i = 0; i < a.length; i++) {  
    // Do something with a[i]  
}  
  • 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-05-28T19:54:59+00:00Added an answer on May 28, 2026 at 7:54 pm
    for (var i = 0, item; item = a[i++];) {  
        // Do something with item  
    } 
    

    Is telling the loop to keep going so long as item gets assigned a “truthy” value. After each iteration, item is assigned the next item in the array. The idea is that once i gets to a point where it’s beyond the bounds of the array, undefined will be assigned, and the loop will terminate.

    But whoever wrote this code should be fired since the loop will also terminate if the array contains any “falsy” values: 0, empty string, false Ok, this code was written by the Mozilla folks, and they’re much smarter than I am. Just note that the loop will terminate if the array contains any “falsy” values: 0, empty string, false

    To see for yourself:

    var a = [1, 2, 3, 0, 5, 6];
    
    for (var i = 0, item; item = a[i++]; ) {
        alert(item);
    } 
    

    note that the loop terminates after 3, since 0 is falsy.

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

Sidebar

Related Questions

I have two expressions of type Expression<Func<T, bool>> and I want to take to
I'm wondering if these two expressions are equivalent, because if they are, it would
I am trying to write a static function to Or two expressions, but recieve
How would I go about joining two lambda expressions like theese: Expression<Func<string, bool>> expr1
I want to compose the results of two Linq Expressions. They exist in the
I'd like to figure out (in runtime) whether or not two regular expressions intersect
I have always used || (two pipes) in OR expressions, both in C# and
Suppose I have the following two strings containing regular expressions. How do I coalesce
I'm using two regular expressions to pull assignments out of MySQL queries and using
This is not close to real situation, but it shows that Expressions API doesn't

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.