applying-the-exp-operator_A10.js (651B)
1 // Copyright 2009 the Sputnik authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 description: If abs(base) < 1 and exponent is −∞, the result is +∞. 6 esid: sec-applying-the-exp-operator 7 ---*/ 8 9 10 var exponent = -Infinity; 11 var base = new Array(); 12 base[0] = 0.999999999999999; 13 base[1] = 0.5; 14 base[2] = +0; 15 base[3] = -0; 16 base[4] = -0.5; 17 base[5] = -0.999999999999999; 18 var basenum = 6; 19 20 for (var i = 0; i < basenum; i++) { 21 if (Math.pow(base[i], exponent) !== +Infinity) { 22 throw new Test262Error("#1: Math.pow(" + base[i] + ", " + exponent + ") !== +Infinity"); 23 } 24 } 25 26 reportCompare(0, 0);