mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 05:18:32 +02:00
21 lines
563 B
JavaScript
21 lines
563 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 undefined is "undefined"
|
|
*
|
|
* @path ch11/11.4/11.4.3/S11.4.3_A3.1.js
|
|
* @description typeof undefined === "undefined"
|
|
*/
|
|
|
|
//CHECK#1
|
|
if (typeof undefined !== "undefined") {
|
|
$ERROR('#1: typeof undefined === "undefined". Actual: ' + (typeof undefined));
|
|
}
|
|
|
|
//CHECK#2
|
|
if (typeof void 0 !== "undefined") {
|
|
$ERROR('#2: typeof void 0 === "undefined". Actual: ' + (typeof void 0));
|
|
}
|
|
|