blob: 137550ab1214b32b409f43de823ff0fdbcefe8fc [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 string primitive
---*/
var result = false;
function callbackfn(val, idx, obj) {
result = obj instanceof String;
}
Array.prototype.forEach.call("abc", callbackfn);
assert(result, 'result !== true');