blob: 9403b2acde6ecd9a07da94128a43794b656e23f4 [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.every
es5id: 15.4.4.16-8-11
description: >
Array.prototype.every returns true when all calls to callbackfn
return true
---*/
var callCnt = 0;
function callbackfn(val, idx, obj)
{
callCnt++;
return true;
}
var arr = [0,1,2,3,4,5,6,7,8,9];
assert.sameValue(arr.every(callbackfn), true, 'arr.every(callbackfn)');
assert.sameValue(callCnt, 10, 'callCnt');