value.js (486B)
1 // Copyright (C) 2016 the V8 project authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 /*--- 4 description: Math.E is a numeric value 5 esid: sec-math.e 6 info: | 7 The Number value for e, the base of the natural logarithms, which is 8 approximately 2.7182818284590452354. 9 10 The precision of this approximation is host-defined. 11 ---*/ 12 13 assert.sameValue(typeof Math.E, 'number'); 14 assert.notSameValue(Math.E, NaN); 15 16 reportCompare(0, 0);