JavaScript에서 ReduceRight() 메서드를 사용하면 오른쪽에서 왼쪽으로 배열의 두 값에 함수를 동시에 적용하여 단일 값으로 줄일 수 있습니다.
다음은 매개변수입니다:
다음 코드를 실행하여 JavaScript에서 ReduceRight() 메서드를 사용하는 방법을 이해할 수 있습니다.
<html> <head> <title>JavaScript Array reduceRight Method</title> </head> <body> <script> if (!Array.prototype.reduceRight) { Array.prototype.reduceRight = function(fun /*, initial*/) { var len = this.length; if (typeof fun != "function") throw new TypeError(); // no value to return if no initial value, empty array if (len == 0 && arguments.length == 1) throw new TypeError(); var i = len - 1; if (arguments.length >= 2) { var rv = arguments[1]; } else { do { if (i in this) { rv = this[i--]; break; } // if array contains no values, no initial value to return if (--i < 0) throw new TypeError(); } while (true); } for (; i >= 0; i--) { if (i in this) rv = fun.call(null, rv, this[i], i, this); } return rv; }; } var total = [0, 1, 2, 3].reduceRight(function(a, b) { return a + b; }); document.write("total is : " + total ); </script> </body> </html>
위 내용은 오른쪽에서 왼쪽으로 동시에 배열의 두 값에 함수를 적용하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!