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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T18:48:28+00:00 2026-06-08T18:48:28+00:00

I was going through some JavaScript code when a loop structure caught my eye.

  • 0

I was going through some JavaScript code when a loop structure caught my eye. It wasn’t anything particularly special, rather it iterated in a manner different from what I do. When I need to loop something that isn’t dependent on order, I typically count up, iterating from beginning to end, like so:

do
{
    // I feel like I'm going in circles
    i++;
} while (i < length)

However, this JavaScript function counted down, looping from end to beginning.

var i = data.length - 1;
if(i >= 0)
{                   
    do
    {
        // Around and around, we go                     
    }while(i--)
}

Is there any advantage to counting downward or is it just up to developer preference?

  • 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-08T18:48:29+00:00Added an answer on June 8, 2026 at 6:48 pm

    I you are removing things from the array, going backwards is better.

    Consider you have an array of 10 things, and you end up wanting to remove items at indexes 3 and 4, thru some conditional that is executed during the loop. You are incrementing your counter. When you remove at 3, what happens to the array vis-a-vis the counter? The array length shrinks to 9, what was at index 4 is now at index 3, and you increment the counter to 4. You just skipped something you wanted to delete. If you go backwards, you avoid this issue.

    Also, going backwards is faster, because processors can compare the index to 0 faster than they can compare the index to a random number.

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

Sidebar

Related Questions

I've been trudging through some Javascript code and encountered this loop for (var w
I have some JavaScript code loaded from a local HTML file (without going through
JavaScript newbie here, I was going through some js code at work when i
Possible Duplicate: >> in javascript I'm going through some code and I ran into
I am going through some code and at the beginning of the script we
I was going through some code that I downloaded off the internet ( Got
I am going through some example assembly code for 16-bit real mode. I've come
I'm going through some old C#.NET code in an ASP.NET application making sure that
I was going through some java code(which uses playframework ) that provides some shopping
Basically, what I'm trying to do is shuffle through images using some JavaScript code.

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.