// 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 returns initialvalue when Array is empty and initialValue is present ---*/ function callbackfn(prevVal, curVal, idx, obj) {} var arr = new Array(10); assert.sameValue(arr.reduce(callbackfn, 5), 5, 'arr.reduce(callbackfn,5)'); reportCompare(0, 0);