Toggle navigation
Genres
Frontend (2)
JavaScript (6)
Database (2)
Linux Server (3)
Web Apps (4)
Misc (4)
Search
List
New Tutorials
Last Modified Tutorials
</>
Code examples
code
smiko
javascript
advanced
async
01global_local.js
01global_local.js
/** * global - async * local - synch */ console.log('global 1'); setTimeout(function(){ console.log('global 2'); }, 2000); console.log('global 3');
Reload page
Preview
W3C validation
Edit Code
JS Console