blob: ca8530fd308639abde004213e87b981e6755655f [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-typeof-operator-runtime-semantics-evaluation
description: typeof undefined and void 0
info: |
The typeof Operator
Runtime Semantics: Evaluation
...
Return a String according to Table 35.
#table-35
Undefined "undefined"
---*/
assert.sameValue(
typeof undefined,
"undefined",
'typeof undefined === "undefined"'
);
assert.sameValue(
typeof void 0,
"undefined",
'typeof void 0 === "undefined"'
);