11.1.4-0.js (340B)
1 // Copyright (c) 2012 Ecma International. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 es5id: 11.1.4-0 6 description: > 7 elements elided at the end of an array do not contribute to its 8 length 9 ---*/ 10 11 var a = [,]; 12 13 assert.sameValue(a.length, 1, 'a.length'); 14 15 reportCompare(0, 0);