V
V
Vitaly2015-08-11 12:37:53
JavaScript
Vitaly, 2015-08-11 12:37:53

What current articles or books can you read to understand asynchrony in JavaScript?

Interested in how you can implement asynchronous code in javaScript in general, and specifically in frameworks such as jQuery and Angular.js

Answer the question

In order to leave comments, you need to log in

2 answer(s)
S
Sergey Protko, 2015-08-11
Protko @Fesor

1) about asynchrony - https://developer.mozilla.org/en-US/docs/Web/JavaS... and further google what is not clear
2) about implementation in framework libraries (in order of ease of implementation and complexity of support, there is such a thing as callback-hell for a reason):
- callbacks
- promises (angular uses them everywhere, for example, they are in jquery)
- coroutines (makes sense with translators like babel.js since generators appeared only in ES2015)

P
Pavel Kononenko, 2015-08-11
@premas

It is unlikely that books or articles will be written for this.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question