a.js 583 B

12345678910111213141516171819
  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. if (true)
  6. {
  7. const c = 1;
  8. WScript.Echo(c);
  9. }
  10. WScript.Echo((function(x) {
  11. let y = arguments;
  12. return y;
  13. })(1)[0]);
  14. let a = 'a';
  15. (function(a) { WScript.Echo(a) })();
  16. WScript.Echo(a);