https://github.com/chaudinh/async_await
https://github.com/chaudinh/async_await
asynchronous callbacks promises vanilla-javascript
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/chaudinh/async_await
- Owner: ChauDinh
- Created: 2018-12-18T05:49:54.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-18T06:26:55.000Z (over 6 years ago)
- Last Synced: 2025-01-19T14:19:56.646Z (5 months ago)
- Topics: asynchronous, callbacks, promises, vanilla-javascript
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Asynchronous
* Asynchronous is when something is going on but we don't want to wait until the thing is done to continue our program, instead continue while the thing's happening.
* Asynchronous is really relevant to JavaScript because we often make requests to server/API, which can taking a couple of seconds to get data back.