Comment soustraire les nombres dans le tableau, à partir de la gauche en JavaScript

// How to Subtract the numbers in the array, starting from the left in javascript
let numberSubtract = [325, 25, 100];
let resultSubtract = numberSubtract.reduce((a, b) => a - b);
console.log(resultSubtract);
Chetan Nada