summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/types/undefined/S8.1_A1_T2.js
blob: a212e94285e6b4aeb68eed4b6d4a7a6359bc3cba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: The Undefined type has one value, called undefined
es5id: 8.1_A1_T2
description: Check typeof(undefined) and typeof(void 0)
---*/

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

// CHECK#3
if (!(undefined === void 0)) {  
	ERROR('#3: undefined === void 0');  
}

reportCompare(0, 0);