Skip to content

Javascript

All about the beautiful language we all love and care for! This category is for JavaScript and different nuances in the JavaScript programming language.

Cover for the JavaScript Memoization article

JavaScript memoization

We can use the internal workings of functions to remember previously computed values, thus improving the performance of code we write by a huge margin (this is an especially important thing to utilize during algorithm writing/coding interviews). Memoization Memoization is a technique that improves the… Read More »JavaScript memoization

Browser Event Handling Cover

Browser event handling

Another feature of the web is that applications have a functional response to user’s interaction, such as clicking, moving the mouse, typing on the keyboard, and using the scroll. Apart from creating the DOM, the browser is responsible for event handling during the page-building process.… Read More »Browser event handling