Let's Start With React jsWhat is React.js? React is an open-source JavaScript framework, that isn't actually a framework. But it is currently the most commonly used front-end development technology in the world. React, originally developed by and still maintained by Facebook...Oct 9, 2022·2 min read
Javascript HoistingYou may have encountered this in javascript when you console.log() a var before declaring, instate of getting an error we get a strange value called undefined let's see what's happened behind the seen. What is hoisting Hoisting is the process in ja...Sep 8, 2022·3 min read
Javascript Execution Context | Call StackLet's take a look at how Javascript programs run step by step, Everything in javascript happens inside the Execution context Execution context Imagine your code is placed inside a box whenever you write JS code. That box is the Execution context, a c...Sep 7, 2022·4 min read
Array methods in javascriptConstruct Array Javascript array can be constructed in 3 way Array literal Creating an instance of Array directly (using the new keyword) Using an Array constructor (using the new keyword) Let's take a look at all 3 ways to construct an array Arra...Aug 27, 2022·6 min read
Getting Start With Tailwind CSSTailwind CSS is one of the best CSS frameworks which helps us to write faster and cleaner CSS Installation Let's take a look at the easiest way to install tailwind CSS by adding the Play CDN script https://cdn.tailwindcss.com to your HTML <!docty...Aug 21, 2022·4 min read
Flex BoxMain Axis When working with a flexbox you need to think of two axes, The main axis, and the cross axis. flex-direction property of the flex-box Is the main axis, by default the flex-direction is set as row flex-direction: row; flex-direction flex-di...Jul 31, 2022·6 min read
The Ultimate Guide To MarkdownWhat Is Markdown? Markdown is a plain text formatting syntax used to write content on the web, It doesn’t take long to learn the Markdown syntax, and once you know how to use it, you can write using Markdown just about everywhere.Markdown is commonly...Jul 23, 2022·6 min read