arr.filter(function(n) { return n > 100; }).map(function(n) { return n * 2; }).reduce(function(prevValue, n) { return prevValue + n; }, 0)