Getting started with Git

To get started with Git, download the latest version of Github for Windows.

Read more

Scope and Closure in JavaScript

Scope controls the visibility, usability and lifetime of variables and parameters, thereby avoids naming collisions and provides memory management.

Read more

JavaScript's prototype & __proto__

JavaScript’s Inheritance model is Prototype-based unlike other Object oriented programming languages which are class based.

Read more

What is JavaScript's bind() method ?

JavaScript’s bind() method allows to explicitly set the value of this to a specific object when a function is invoked.

Read more

JavaScript Lazy loading / Asynchronous loading

Where should the JavaScript be placed in a HTML page for optimal performance of a Website ?

Read more