blob: f584a0adc354dcd06dca62f3c5d21727586144cc [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 - 'this' of 'callbackfn' is a Boolean
object when T is not an object (T is a boolean)
---*/
var result = false;
function callbackfn(val, idx, obj) {
result = (this.valueOf() !== false);
}
var obj = {
0: 11,
length: 2
};
Array.prototype.forEach.call(obj, callbackfn, false);
assert.sameValue(result, false, 'result');