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

/**
 * NaN !== NaN
 *
 * @path ch08/8.5/S8.5_A1.js
 * @description Compare NaN with NaN
 */

var x = Number.NaN;
var x_ = Number.NaN;

///////////////////////////////////////////////////////
// CHECK #1
if (x === x_){
  $ERROR('#1: NaN !== NaN ');
}
//
//////////////////////////////////////////////////////////