mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 05:18:32 +02:00
21 lines
565 B
JavaScript
21 lines
565 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* Result of applying "typeof" operator to null is "object"
|
|
*
|
|
* @path ch11/11.4/11.4.3/S11.4.3_A3.2.js
|
|
* @description typeof null === "object"
|
|
*/
|
|
|
|
//CHECK#1
|
|
if (typeof null !== "object") {
|
|
$ERROR('#1: typeof null === "object". Actual: ' + (typeof null));
|
|
}
|
|
|
|
//CHECK#2
|
|
if (typeof RegExp("0").exec("1") !== "object") {
|
|
$ERROR('#2: typeof RegExp("0").exec("1") === "object". Actual: ' + (typeof RegExp("0").exec("1")));
|
|
}
|
|
|