blob: 217580de0b2140845b629792aa68802478f8fd78 [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 applied to Function object
---*/
var result = false;
function callbackfn(val, idx, obj) {
result = obj instanceof Function;
}
var obj = function(a, b) {
return a + b;
};
obj[0] = 11;
obj[1] = 9;
Array.prototype.forEach.call(obj, callbackfn);
assert(result, 'result !== true');