test262/test/built-ins/isNaN/return-true-nan.js

20 lines
455 B
JavaScript

// Copyright (C) 2016 The V8 Project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-isnan-number
es6id: 18.2.3
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]
---*/
distinctNaNs.forEach(function(v, i) {
assert.sameValue(isNaN(v), true, "value on position: " + i);
});