27 followers
Software Engineer @ThisDot | Technical Writer @TheWorld
Gatsby is a React framework also called a Static Site Generation tool which can be used to create static pages from dynamic data. This data can be gotten from any source. In this article, we'll walk through a tutorial showing how to build a source pl...
this is a popular misunderstood concept in Javascript as during usage, you cannot determine most of the time what it references. In this article, I hope to clear every confusion surrounding it. this is an inherently (automatically) created variable ...
JavaScript is a prototype-based object-oriented language. Although, you'd see the class keyword (in modern Javascript) but it works as prototypes at the background. I explained how the class keyword works in this article on this. In this article, we'...
This article was first published on my blog - dillionmegida.com I'd assume that you have a Gatsby site already running. Also, I'd be more particular about blogs since they a better example for a regular publishing site. However, there are greater pow...
This article was first shared on my blog - Dillion Megida's Blog On the series, today's topic is Making Layouts With CSS - designing layouts with CSS. We have been made to understand that CSS gives beauty to our webpage by giving it styles. There ar...
The for loop creates a loop where executions are executed as long as the given condition remains true. There are other methods of loops which you can find here. I chose to explain the for-loop because it pretty much describes how a loop operation is ...