summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/filter/15.4.4.20-5-28.js
blob: e1aad658de06cca7a3e6f0748b0918850ac813f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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
description: Array.prototype.filter - the returned array is instanceof Array
---*/

var newArr = [11].filter(function() {});

assert(newArr instanceof Array, 'newArr instanceof Array !== true');

reportCompare(0, 0);