blob: 0f41a07e42bb037c69fe9a2e1c12f316643ed5b1 [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.filter
es5id: 15.4.4.20-5-28
description: Array.prototype.filter - the returned array is instanceof Array
---*/
var newArr = [11].filter(function () { });
assert(newArr instanceof Array, 'newArr instanceof Array !== true');