p.js 695 B

12345678910111213141516171819202122232425262728
  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. for (a in this) {
  6. if (a === "SCA" || a === "ImageData")
  7. continue;
  8. WScript.Echo(a);
  9. }
  10. const x = 10;
  11. WScript.Echo(x);
  12. {
  13. const x = 20;
  14. WScript.Echo(x);
  15. }
  16. WScript.Echo(x);
  17. for (a in this) {
  18. if (a === "SCA" || a === "ImageData")
  19. continue;
  20. WScript.Echo(a);
  21. }