2016-06-30 20:05:47 +02:00
|
|
|
// Copyright (C) 2016 The V8 Project authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
es6id: 18.2.3
|
2017-06-29 17:31:57 +02:00
|
|
|
esid: sec-isnan-number
|
2016-06-30 20:05:47 +02:00
|
|
|
description: >
|
|
|
|
Return true if number is NaN
|
|
|
|
info: |
|
|
|
|
isNaN (number)
|
|
|
|
|
|
|
|
1. Let num be ? ToNumber(number).
|
|
|
|
2. If num is NaN, return true.
|
|
|
|
includes: [nans.js]
|
|
|
|
---*/
|
|
|
|
|
2018-03-09 20:47:05 +01:00
|
|
|
NaNs.forEach(function(v, i) {
|
2018-03-23 01:20:29 +01:00
|
|
|
assert.sameValue(isNaN(v), true, "value on position: " + i);
|
2016-06-30 20:05:47 +02:00
|
|
|
});
|