blob: 698402ebade837482035b57e0b943d659e66d9e7 [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 0 formal
parameter
---*/
var called = 0;
function callbackfn() {
called++;
}
[11, 12].forEach(callbackfn);
assert.sameValue(called, 2, 'called');