blob: a9df829af6770a47c5b516179cbcb9d105f207fd [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-iii-14
description: >
Array.prototype.filter return value of callbackfn is an empty
string
---*/
var accessed = false;
function callbackfn(val, idx, obj) {
accessed = true;
return "";
}
var newArr = [11].filter(callbackfn);
assert.sameValue(newArr.length, 0, 'newArr.length');
assert(accessed, 'accessed !== true');