blob: 3891d45c6f3ff1345ccb3b69b1f7321a30d41624 [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.foreach
description: >
Array.prototype.forEach - callbackfn is called with 2 formal
parameter
---*/
var result = false;
function callbackfn(val, idx) {
result = (val > 10 && arguments[2][idx] === val);
}
[11].forEach(callbackfn);
assert(result, 'result !== true');