Toggle navigation
Toggle navigation
This project
Loading...
Sign in
I_Jemin
/
Node-Study
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
I_Jemin
2018-03-20 06:54:07 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
0b76ffe6696e1fb954e6340e30f6155d59ae4f50
0b76ffe6
1 parent
088989a4
Module is not global
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
13 deletions
app.js
app.js
View file @
0b76ffe
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
...
...
Please
register
or
login
to post a comment