15.4.3.2-0-1.js (387B)
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-1 7 description: Array.isArray must exist as a function 8 ---*/ 9 10 var f = Array.isArray; 11 12 assert.sameValue(typeof f, "function", 'The value of `typeof f` is expected to be "function"'); 13 14 reportCompare(0, 0);