blob: 0a4826b3432d61ecbfe00e3baad8045c9116ddf4 [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 - no observable effects occur if len is 0
---*/
var accessed = false;
function callbackfn(val, idx, obj) {
accessed = true;
}
var obj = {
0: 11,
1: 12,
length: 0
};
Array.prototype.forEach.call(obj, callbackfn);
assert.sameValue(accessed, false, 'accessed');