執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
轉到 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Arrays</h1> <h2>The reduceRight() Method</h2> <p>Find the sum of all numbers in an array:</p> <p id="demo"></p> <script> const numbers = [45, 4, 9, 16, 25]; let sum = numbers.reduceRight(myFunction); document.getElementById("demo").innerHTML = "The sum is " + sum; function myFunction(total, value) { return total + value; } </script> </body> </html>