test262/test/built-ins/NaN/S15.1.1.1_A1.js

24 lines
555 B
JavaScript

// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: The initial value of NaN is NaN
es5id: 15.1.1.1_A1
description: Use typeof, isNaN, isFinite
---*/
// CHECK#1
if (typeof(NaN) !== "number") {
$ERROR('#1: typeof(NaN) === "number". Actual: ' + (typeof(NaN)));
}
// CHECK#2
if (isNaN(NaN) !== true) {
$ERROR('#2: NaN === Not-a-Number. Actual: ' + (NaN));
}
// CHECK#3
if (isFinite(NaN) !== false) {
$ERROR('#3: NaN === Not-a-Finite. Actual: ' + (NaN));
}