blob: 2c86c43b8c8bde46ab1a527136b12240144b2348 [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-1
description: >
Array.prototype.map - Array.isArray returns true when input
argument is the ourput array
---*/
var newArr = [11].map(function () { });
assert(Array.isArray(newArr), 'Array.isArray(newArr) !== true');