blob: 80b30b5f64708d6648c464cc2b20dac4bf527d53 [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-7-c-iii-23
description: >
Array.prototype.every - return value of callbackfn is the JSON
object
---*/
var accessed = false;
function callbackfn(val, idx, obj) {
accessed = true;
return JSON;
}
assert([11].every(callbackfn), '[11].every(callbackfn) !== true');
assert(accessed, 'accessed !== true');