So subtrahieren Sie die Zahlen im Array, beginnend von rechts in JavaScript
// How to Subtract the numbers in the array, starting from the right in javascript
let numberSubtractRight = [100, 25, 100];
let resultSubtractRight = numberSubtractRight.reduceRight((a, b) => a - b);
console.log(resultSubtractRight);
Chetan Nada