12
Làm thế nào để ngắt sớm phương thức Reduce ()?
Làm thế nào tôi có thể phá vỡ sự lặp lại của reduce()phương thức? for: for (var i = Things.length - 1; i >= 0; i--) { if(Things[i] <= 0){ break; } }; reduce() Things.reduce(function(memo, current){ if(current <= 0){ //break ??? //return; <-- this will return undefined to memo, which …