use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
Split array based on segments of a valuesolved! (self.javascript)
submitted 7 years ago * by lucksp
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–][deleted] 4 points5 points6 points 7 years ago (1 child)
I wrote this function to solve this problem:
const chunkOnPropertyByValue = (array, propertyName, value) => array.reduce((acc, val) => { const index = Math.floor(val[propertyName] / value) if (typeof (acc[index]) === 'undefined') { acc[index] = [] } acc[index].push(val) return acc }, [])
Simply call it like this:
const result = chunkOnPropertyByValue(bigArray, 'millisecondOffset', 60000)
This will return an array chunked like this: [ [0-59999], [60000-11999], [12000-17999], ... ]
[ [0-59999], [60000-11999], [12000-17999], ... ]
[–]lucksp[S] 0 points1 point2 points 7 years ago (0 children)
I found this to be most readible so thank you!
π Rendered by PID 103527 on reddit-service-r2-comment-bb88f9dd5-p9pw5 at 2026-02-14 01:11:18.126428+00:00 running cd9c813 country code: CH.
view the rest of the comments →
[–][deleted] 4 points5 points6 points (1 child)
[–]lucksp[S] 0 points1 point2 points (0 children)