Programming Blog

Written by Akshay Jadhav Mobile application and Full stack web-developer My PortfolioYou can contact me onInstagram

JS Compiler Optimization Techniques

December 14, 2020

JS is a dynamically typed language and to help the JS compiler to improve performance hidden classes and Inline caching are used.

JavaScript Engine (V8)

December 13, 2020

A JavaScript engine is a computer program that executes JavaScript (JS) code. We are going to explore V8 engine which is used in Chrome browser.

Double shots (!!) in javascript

October 22, 2020

Double shots (!!) first, change the value to the boolean opposite, and then take that returned boolean value and flip it, again, to the opposite.

React Redux II

September 19, 2020

Redux is a predictable state container for JavaScript apps. In this section we are going to explore redux in react application (Using hooks).

React Redux

August 29, 2020

Redux is a predictable state container for JavaScript apps. Redux stores the state of your application.

React Custom Hook

July 04, 2020

Using custom hook helps you extract component logic into reusable functions.