blob: 1acfec147fe1a88967bbea70f1ba757f05bcd720 [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
es5id: 15.4.4.19-6-2
description: Array.prototype.map - the returned array is instanceof Array
---*/
var newArr = [11].map(function () { });
assert(newArr instanceof Array, 'newArr instanceof Array !== true');