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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T16:51:58+00:00 2026-06-08T16:51:58+00:00

Suppose we have an array of variable length, and I want to process it

  • 0

Suppose we have an array of variable length, and I want to process it by chunks that are of a maximum length of 100, and do it in the minimum number of chunks. So for an array of length 241, it would be 3 sub arrays of sizes 41, 100, 100 (or 100, 100, 41).

curr_len = arr.length;
offset = curr_len%100;
doSomethingWithSubArray(arr.slice(offset))

for(j = offset; j <= curr_len; j = j+100){
    doSomethingWithSubArray(arr.slice(j,j+100))
}

I’m sure there are more elegant ways of doing this, possibly without the special case before the for loop. Any ideas?

  • 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-08T16:52:02+00:00Added an answer on June 8, 2026 at 4:52 pm

    I’d expect the last chunk to be of smaller size. The code then would be:

    for (var i=0; i<arr.length; i+=100)
        doSomethingWithSubArray(arr.slice(i, 100));
    

    This is exactly what my splitBy function does:

    Array.prototype.splitBy = function(n) {
    /* get: number of items per array
    return: array of n-sized arrays with the items (last array may contain less then n) */
        for (var r=[], i=0; i<this.length; i+=n)
            r.push(this.slice(i, i+n));
        return r;
    }
    

    Then write only:

    arr.splitBy(100).forEach(doSomethingWithSubArray);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's suppose I have n arrays, where n is a variable (some number greater
Suppose i have an array $x = (31,12,13,25,18,10); I want to reduce this array
Suppose I have an array that mimics a database table. Each array element represents
Suppose I have an array like this: $array = array(a,b,c,d,a,a); and I want to
I have a question about Quantifiers. Suppose that I have an array and I
Suppose that I have a 2D array (matrix) in Java like this... int[][] MyMat
I have a class and I want to create an array of a number
I have an array variable, say for an example:- int a[10]; And suppose i
I have an array variable $colorArray = array('red','white','blue'); Suppose $color = red; , how
Suppose I have an array that stores all my ids used for setInterval .

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.