-
Arindam Paul – JavaScript VM internals, EventLoop, Async and ScopeChains
The goal of this talk would be to provide a good understanding of the following, A crisp understanding of the JavaScript VM and how a single threaded engine can be massively parallel. How event loop and callbacks works, example of blocking and non-blocking codes, ES6 generators for custom Async signaling. How function definitions happen and…
-
Anirudh Sanjeev – Understand, find, prevent and fix memory leaks in JavaScript
* Do we even need to worry about JS memory. It’s garbage collected after all. * How do JS engines implement Garbage Collection and other memory stuff. * How memory is managed outside the JS world – in Java, C, etc. * Common ways you can leak memory or take up too much of it.…