Created
October 25, 2017 08:05
-
-
Save nomanHasan/a689ce956ca3eec52c9641a2a3226a04 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var files = [{name: "a", size: 120}, {name: "b", size: 220}, {name: "c", size: 320}, {name: "d", size: 420}, {name: "e", size: 520}] | |
var files = files.reduce((sum, f) => {f.start = sum ; console.log(sum, f); return sum+f.size}, 0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment