Skip to content

Instantly share code, notes, and snippets.

@omarish
Created December 16, 2010 23:47
Show Gist options
  • Save omarish/744238 to your computer and use it in GitHub Desktop.
Save omarish/744238 to your computer and use it in GitHub Desktop.
simple cumulative sum in javascript.
cumsum = [];
j = [0,1,2,3,4];
for(var a=0;a<j.length;a++) {
if(a==0) cumsum[a] = j[0];
else cumsum[a] = cumsum[a-1] + j[a];
}
@keithpjolley
Copy link

keithpjolley commented Feb 23, 2019

How about:

let y=0;
let b=[1,2,3,4,5];
cumsum = b.map(d=>y+=d);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment