I_Jemin

Module is not global

Showing 1 changed file with 1 additions and 13 deletions
console.log("Hello World!");
setTimeout();
clearTimeout();
setInterval(); // repeat call after delay
clearInterval();
//window.console.log
var message = '';
console.log(global.message); // won't work
//global.setTimeout
\ No newline at end of file
console.log(module); // module is not global
\ No newline at end of file
......