fix: replace imgur with s3 for english guide without conflict (#36053)

* fix: imgur to s3 for englsh guide without conflict

(cherry picked from commit 9c9f15abf4e755feab79ef7090dacdcf497ea7b6)

* fix: revert unrelated changes
This commit is contained in:
Ahmad Abdolsaheb
2019-05-20 21:24:51 +03:00
committed by Parth Parth
parent 18e15830d9
commit a16539becf
36 changed files with 66 additions and 66 deletions

View File

@@ -33,7 +33,7 @@ So to summarize whenever a function is invoked it is pushed into the call stack
Now we know from this that JavaScript can execute one thing at a time but that's not the case with the Browser. The Browser has it's own set of API's like setTimeout, XMLHttpRequests which are not specified in the JavaScript runtime. In fact if you look through the source code of V8, the popular JavaScript runtime that powers browsers like Google Chrome you won't find any definitions for it. It's because these special web API's exist in the browser environment not inside the javascript environment and you can say that these apis introduces concurrency into the mix. Let's look at a diagram to understand the whole picture.
![Concurrency and Event Loop Model](https://i.imgur.com/rnQEY7o.png)
![Concurrency and Event Loop Model](https://cdn-media-1.freecodecamp.org/imgr/rnQEY7o.png)
Some more terms are introduced