blob: de8b2438976e4224a292f9b71137f212ad30ffcc [file] [log] [blame]
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-array.prototype.reduceright
description: >
Array.prototype.reduceRight - callbackfn is called with 2 formal
parameter
---*/
var testResult = false;
function callbackfn(prevVal, curVal) {
if (prevVal === 100) {
testResult = true;
}
return curVal > 10;
}
assert.sameValue([11].reduceRight(callbackfn, 100), true, '[11].reduceRight(callbackfn, 100)');
assert(testResult, 'testResult !== true');