Guest User

Untitled

a guest
Jun 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. const fooArray = [119119282, 68294204, 60553189, 40109742, 37361729, 38022183,
  2. 27395725, 49325663, 56731532, 43145665, 31362029, 29528583, 28085057, 22932686,
  3. 34394152, 34368250, 21479271, 8021882, 7967428, 6210432, 5972359, 10744380,
  4. 19204072, 12405333];
  5.  
  6. const barArray = [];
  7. fooArray.reduce((previousValue, currentValue, currentIndex) => {
  8. barArray.push(previousValue)
  9. return previousValue + currentValue;
  10. });
  11.  
  12. [119119282, 187413486, 247966675, 288076417, 325438146, 363460329, 390856054,
  13. 440181717, 496913249, 540058914, 571420943, 600949526, 629034583, 651967269,
  14. 686361421, 720729671, 742208942, 750230824, 758198252, 764408684, 770381043,
  15. 781125423, 800329495]
Add Comment
Please, Sign In to add comment