mirror of
https://github.com/tc39/test262.git
synced 2025-05-21 07:10:27 +02:00
The global isNaN is not precise at all, and Number.isNaN is an ES6 feature that makes it preferrable to use assert's sameValue for NaN values, as it handles it internally using the comparison.
27 lines
705 B
JavaScript
27 lines
705 B
JavaScript
// Copyright 2016 Rick Waldron. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-applying-the-exp-operator
|
|
description: If base is NaN and exponent is nonzero, the result is NaN.
|
|
---*/
|
|
|
|
|
|
var base = NaN;
|
|
var exponents = [];
|
|
exponents[0] = -Infinity;
|
|
exponents[1] = -1.7976931348623157E308; //largest (by module) finite number
|
|
exponents[2] = -0.000000000000001;
|
|
exponents[3] = 0.000000000000001;
|
|
exponents[4] = 1.7976931348623157E308; //largest finite number
|
|
exponents[5] = +Infinity;
|
|
exponents[6] = NaN;
|
|
|
|
for (var i = 0; i < exponents.length; i++) {
|
|
assert.sameValue(
|
|
base ** exponents[i],
|
|
NaN,
|
|
base + " ** " + exponents[i]
|
|
);
|
|
}
|