constructor.js (362B)
1 // Copyright (C) 2017 Leo Balter. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 esid: sec-array-constructor-array 6 description: > 7 The Array constructor is a built-in function 8 ---*/ 9 10 assert.sameValue(typeof Array, 'function', 'The value of `typeof Array` is expected to be "function"'); 11 12 reportCompare(0, 0);