rhino1.7.6.testsrc.doctests.number.tostring.doctest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rhino Show documentation
Show all versions of rhino Show documentation
Rhino is an open-source implementation of JavaScript written entirely in Java. It is typically
embedded into Java applications to provide scripting to end users.
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
js> 10000000000000000000000
1e+22
js> 100000000000000000000001
1.0000000000000001e+23
js> 1000000000000000000000001
1e+24
js> -10000000000000000000000
-1e+22
js> -100000000000000000000001
-1.0000000000000001e+23
js> -1000000000000000000000001
-1e+24
js> 0.1
0.1
js> -0.1
-0.1
js> 0.00001
0.00001
js> -0.00001
-0.00001
js> 0.000001
0.000001
js> -0.000001
-0.000001
js> 0.0000001
1e-7
js> -0.0000001
-1e-7
js> -0.0000000000000001
-1e-16
js> 0.0000000000000001
1e-16
js> 0.00000000000000000000000001
1e-26
js> -0.00000000000000000000000001
-1e-26
© 2015 - 2024 Weber Informatics LLC | Privacy Policy