https://github.com/chaudinh/async_await
https://github.com/chaudinh/async_await
asynchronous callbacks promises vanilla-javascript
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/chaudinh/async_await
- Owner: ChauDinh
- Created: 2018-12-18T05:49:54.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-18T06:26:55.000Z (over 7 years ago)
- Last Synced: 2025-12-31T16:08:23.995Z (6 months ago)
- Topics: asynchronous, callbacks, promises, vanilla-javascript
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 0
- 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.