constants.js 644 B

123456789101112131415
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. // check constants, just echo
  6. WScript.Echo("Math constants:")
  7. WScript.Echo(Math.E);
  8. WScript.Echo(Math.PI);
  9. WScript.Echo(Math.LN10);
  10. WScript.Echo(Math.LN2);
  11. WScript.Echo(Math.LOG2E);
  12. WScript.Echo(Math.LOG10E);
  13. WScript.Echo(Math.SQRT1_2);
  14. WScript.Echo(Math.SQRT2);