q.baseline 291 B

1234567891011121314151617181920212223242526
  1. undefined
  2. 5
  3. undefined
  4. WScript
  5. print
  6. read
  7. readbuffer
  8. console
  9. f
  10. a
  11. a
  12. undefined
  13. a
  14. function f() {
  15. const x = 'a';
  16. WScript.Echo(x);
  17. if (1 > 0)
  18. {
  19. let x;
  20. WScript.Echo(x);
  21. }
  22. WScript.Echo(x);
  23. WScript.Echo(f);
  24. }
  25. undefined