blob: 844e0bf625239570c2263c1db25a1207a66ce713 [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-12
description: >
Array.prototype.every doesn't mutate the array on which it is
called on
---*/
function callbackfn(val, idx, obj)
{
return true;
}
var arr = [1,2,3,4,5];
arr.every(callbackfn);
assert.sameValue(arr[0], 1, 'arr[0]');
assert.sameValue(arr[1], 2, 'arr[1]');
assert.sameValue(arr[2], 3, 'arr[2]');
assert.sameValue(arr[3], 4, 'arr[3]');
assert.sameValue(arr[4], 5, 'arr[4]');