mirror of https://github.com/tc39/test262.git
24 lines
675 B
JavaScript
24 lines
675 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 abs(base) > 1 and exponent is −∞, the result is +0.
|
|
---*/
|
|
|
|
|
|
var exponent = -Infinity;
|
|
var bases = [];
|
|
bases[0] = -Infinity;
|
|
bases[1] = -1.7976931348623157E308; //largest (by module) finite number
|
|
bases[2] = -1.000000000000001;
|
|
bases[3] = 1.000000000000001;
|
|
bases[4] = 1.7976931348623157E308; //largest finite number
|
|
bases[5] = +Infinity;
|
|
|
|
for (var i = 0; i < bases.length; i++) {
|
|
if ((bases[i] ** exponent) !== +0) {
|
|
$ERROR("(" + bases[i] + " ** " + exponent + ") !== +0");
|
|
}
|
|
}
|