Hey, it's Jay.

I'm a full stack developer, currently working with Angular and Golang. I love exploring new technologies and developing software solutions. Building frontend and blog writing being some of my hobbies. Apart from that, I like music, playing guitar and FIFA.

Most Recent

Why I prefer axios over fetch() ?

A while ago I published a blog on how to use Axios to fetch data in your react app . Nevertheless, it's important to acknowledge the fact that Axios...

What's and why's of state in React.

State, often termed as a component's memory in React is a plain JavaScript object used by React to represent some information about the component's current ...

TREES, your friendly neighbourhood data structures

A Tree is a non-linear data structure that organizes data in a hierarchical way. As opposed to arrays or linked lists that are linear, a tree can have zero or ...

Using React Router in your React app

A single-page application (SPA) is a website that re-renders its content in response to navigation actions (e.g. clicking a link) without making a request...

Using axios to fetch data in your React apps

In our React applications we often need to retrieve data from external APIs so it can be displayed in our web pages. Axios is designed to handle http …

Typewriter effect in your React app.

A lot of websites nowadays contain texts that simulate typing effect, eraser effect and a blinking cursor. Let's create a simple typewriter effe…

undefined vs not defined in JavaScript.

Let's understand the difference between undefined and not defined in JavaScript. undefined Whenever a JS code is executed, a Global Execution Context…

HEAPS, the cutest little data structure.

Heaps are a great example of many core computer science concepts working together in order to form one very large abstraction, which is made up of smaller...

View All Blogs