blob: 5ea00b7a3ef5a6f6be29f94ffb098e4a55d4d00c [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.reduce
description: >
Array.prototype.reduce - value of 'length' is a positive
non-integer, ensure truncation occurs in the proper direction
---*/
function callbackfn(prevVal, curVal, idx, obj) {
return (curVal === 11 && idx === 1);
}
var obj = {
1: 11,
2: 9,
length: 2.685
};
assert.sameValue(Array.prototype.reduce.call(obj, callbackfn, 1), true, 'Array.prototype.reduce.call(obj, callbackfn, 1)');