Debugging Memory Leaks in Production JavaScript Applications

At the high level of building web applications, low level details of memory management are typically abstracted away from the programmer. While you still need to be aware of the memory needs of your application, using a language like JavaScript means you … Read more

Similar

Inheritance in JavaScript

JavaScript does not have classes unlike other languages. It uses the concept of prototypes and prototype chaining for inheritance. If you do not what is prototype, please go through this article… (more…)

Read more »