mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 21:38:26 +02:00
22 lines
629 B
JavaScript
22 lines
629 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* When Array is called as a function rather than as a constructor,
|
|
* it creates and initialises a new Array object
|
|
*
|
|
* @path ch15/15.4/15.4.1/S15.4.1_A3.1_T1.js
|
|
* @description Checking use typeof, instanceof
|
|
*/
|
|
|
|
//CHECK#1
|
|
if (typeof Array() !== "object") {
|
|
$ERROR('#1: typeof Array() === "object". Actual: ' + (typeof Array()));
|
|
}
|
|
|
|
//CHECK#2
|
|
if ((Array() instanceof Array) !== true) {
|
|
$ERROR('#2: (Array() instanceof Array) === true. Actual: ' + (Array() instanceof Array));
|
|
}
|
|
|