15.4.3.2-0-2.js (386B)
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 esid: sec-array.isarray 6 es5id: 15.4.3.2-0-2 7 description: Array.isArray must exist as a function taking 1 parameter 8 ---*/ 9 10 assert.sameValue(Array.isArray.length, 1, 'The value of Array.isArray.length is expected to be 1'); 11 12 reportCompare(0, 0);