blob: 0d6beb14789d4ce6ad9150d8e8001c6b3ee76f7f [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-9-c-ii-9
description: >
Array.prototype.filter - callbackfn is called with 0 formal
parameter
---*/
function callbackfn() {
return true;
}
var newArr = [11].filter(callbackfn);
assert.sameValue(newArr.length, 1, 'newArr.length');
assert.sameValue(newArr[0], 11, 'newArr[0]');