I_Jemin
Committed by i_jemin@hotmail.com

Node Global

Showing 1 changed file with 12 additions and 0 deletions
1 console.log("Hello World!"); 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
......