| 1234567891011121314151617181920212223242526 |
- undefined
- 5
- undefined
- WScript
- print
- read
- readbuffer
- console
- f
- a
- a
- undefined
- a
- function f() {
- const x = 'a';
- WScript.Echo(x);
- if (1 > 0)
- {
- let x;
- WScript.Echo(x);
- }
- WScript.Echo(x);
- WScript.Echo(f);
- }
- undefined
|