I_Jemin

Module is not global

Showing 1 changed file with 1 additions and 13 deletions
1 -console.log("Hello World!");
2 -
3 -setTimeout();
4 -clearTimeout();
5 -
6 -setInterval(); // repeat call after delay
7 -clearInterval();
8 -
9 -//window.console.log
10 -
11 -var message = '';
12 -console.log(global.message); // won't work
13 -//global.setTimeout
...\ No newline at end of file ...\ No newline at end of file
1 +console.log(module); // module is not global
...\ No newline at end of file ...\ No newline at end of file
......