Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yoursrijit/advanced-backend
Advanced Backend course of Sankeet Sing 2024
https://github.com/yoursrijit/advanced-backend
expressjs javascript linux nodejs
Last synced: about 12 hours ago
JSON representation
Advanced Backend course of Sankeet Sing 2024
- Host: GitHub
- URL: https://github.com/yoursrijit/advanced-backend
- Owner: yourSrijit
- Created: 2024-03-09T11:14:45.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-03-25T11:31:00.000Z (8 months ago)
- Last Synced: 2024-03-25T19:19:23.615Z (8 months ago)
- Topics: expressjs, javascript, linux, nodejs
- Language: JavaScript
- Homepage:
- Size: 2.06 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advanced-Backend
Advanced Backend course of Sankeet Sing 2024# Advanced Java Script
---
### 34. Async Proogramming with JS
- JS is sync in nature ( it check line by line)
- JS is single threaded
```
function byLoop(){
console.log('Loop start');
for(let i=0;i<1000000;i++){}
console.log('Loop end');
}
function bySetTimeout(){
console.log('SetTimeOut start');
setTimeout(()=>{
console.log('Complete the setTimeOut');
},6000)
}console.log('Hi srijit');
byLoop();
bySetTimeout();
byLoop();
```