Kết quả là: const arr = [ x => x * 1, x => x * 2, x => x * 3, x => x * 4 ]; console.log(arr.reduce((agg, el) => agg + el(agg), 1));8/50Kết quả là:const arr = [x => x * 1,x => x * 2,x => x * 3,x => x * 4];console.log(arr.reduce((agg, el) => agg + el(agg), 1));160100120Giải thíchChọn đáp án D