summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/reduceRight/15.4.4.22-10-7.js
blob: 27be976b4b910bd9c0a0c67e79e535002443ad5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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
es5id: 15.4.4.22-10-7
description: >
    Array.prototype.reduceRight - subclassed array when length to 1
    and initialvalue provided
---*/

  foo.prototype = [1];
  function foo() {}
  var f = new foo();

  function cb(prevVal, curVal, idx, obj){return prevVal + curVal;}

assert.sameValue(f.reduceRight(cb,"4"), "41", 'f.reduceRight(cb,"4")');