g.js 544 B

12345678910111213141516
  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. var a = [];
  6. for (var i = 0; i < 1; ++i) {
  7. for (var j = 0; j < 1; ++j) {
  8. a[i] = Math.sin(j - 1);
  9. }
  10. const xx = 34;
  11. WScript.Echo(xx);
  12. }