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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T08:57:55+00:00 2026-06-10T08:57:55+00:00

I have the following loop that I use several times: for(var i = 0;

  • 0

I have the following loop that I use several times:

    for(var i = 0; i < $options.length; i++) { //...

Rather than repeat myself with that code everytime I want to use that loop, I’d like to turn that into a function.

I’ve tried the following but get an error “i is undefined”

function optionLoop( $options, callback) {
    for(var i = 0; i < $options.length; i++) {
        callback();
    }
}

Usage:

    optionLoop($options, function(){
         // Do it
    });

But that isn’t working. How can I turn a loop into a reusable function to which I can pass another function? And one more question… am I crazy for wanting to do this?

thanks!

  • 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-10T08:57:57+00:00Added an answer on June 10, 2026 at 8:57 am

    You should pass the loop values into your callback:

    function optionLoop( $options, callback) {
        for(var i = 0; i < $options.length; i++) {
            callback(i, $options[i]);
        }
    }
    

    Then, when you call it, use them in your callback function:

    optionLoop($options, function(index, value) {
    });
    

    Here’s the fiddle: http://jsfiddle.net/vGHK5/


    Update: if you want to be able to break out of the loop from within the function, use this:

    function optionLoop( $options, callback) {
        for(var i = 0; i < $options.length; i++) {
            if ( callback(i, $options[i]) === false ) break;
        }
    }
    

    Then just return false if you want to break.

    Here’s the fiddle: http://jsfiddle.net/vGHK5/1/

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

Sidebar

Related Questions

I have the following rails code in a loop that has a link for
Guys, I have the following code that is inside a big while loop that
I have the following code fragment that I use to scale images. This is
I have the following loop: for(var myScreen in wizardScreens){ if(step==index)$(myScreen).show(); else $(myScreen).hide(); index++; }
I have the following for loop: for (loc in locations){ var newLoc = locations[loc].split(,
I have an entity that needs to be grouped several times by three of
I have the following php loop that takes an array that contains a set
I have following loop in my jsp page: <c:forEach var=i begin=1 end=${ toLvvt }
I have the following loop that adds an object to an array if certain
First, some visualization of the code. I have the following images that are dynamically

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.