blob: 98a747f40c0e78fd31297a44c3115344448c212f [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.map
description: Array.prototype.map throws TypeError if callbackfn is string
---*/
var arr = new Array(10);
assert.throws(TypeError, function() {
arr.map("abc");
});