| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- // interesting floating point limits
- checkNaN(NaN);
- check(+0, +0);
- check(-0.0, -0.0);
- checkNaN(+Infinity);
- checkNaN(-Infinity);
- check(1, (Math.PI) /2);
- check(0.5 , (Math.PI) / 6);
- if(!isNaN(Math.sin()))
- {
- WScript.Echo("error: Math.sin() is not NaN");
- }
- WScript.Echo("done");
- function check(result, n) {
- var rs = Math.sin(n);
- if (Math.abs(rs - result) > 0.00000000001) {
- WScript.Echo("sin(" + n + ") != " + result);
- WScript.Echo(" wrong result is sin(" + n + ") = " + rs);
- }
- }
- function checkNaN(x) {
- var rs = Math.sin(x);
- if (!isNaN(rs)) {
- WScript.Echo("sin(" + x + ") != NaN");
- WScript.Echo(" wrong result is sin(" + x + ") = " + rs);
- }
- }
|