test262/test/suite/ch15/15.4/15.4.1/S15.4.1_A3.1_T1.js
2011-10-03 13:04:52 -07:00

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));
}