KGKaushik Gabhaneinkaushik543.hashnode.dev·Mar 16, 2023 · 7 min read💚 React Day 2 🚀💥 Preface : In this article first, we will learn about some common terms which come into this article and then we will add React to our existing project and make it production ready. 🎯Basic terms : 🎟️ What is npm? npm is the largest registry for ...00
KGKaushik Gabhaneinkaushik543.hashnode.dev·Mar 12, 2023 · 4 min read💚 React Basics 🚀🙂 Preface: Hello everyone, after a long time I am starting a new series for react. This series will be covering react basics and some intermediate topics which I am going to learn in the next few days. 💥 What is React.js? React.js is a javascript ...00
KGKaushik Gabhaneinkaushik543.hashnode.dev·Jan 1, 2023 · 12 min read🎟️Git Tools & Stratergies🎟️🎯Background : In the previous git article, we touched on some bare minimum topics of git and some concepts of branching. We have seen as a developer we have to work in teams. For that, we used branching concepts in our previous article. 🎯preface : ...00
KGKaushik Gabhaneinkaushik543.hashnode.dev·Dec 22, 2022 · 7 min read🔗Git and GitHub⛓️Hello everyone, I am back with another topic which is essential for every developer in his journey which is Git and GitHub. This is part 1 of this series and we will cover some more important tools of git in part 2. 🎯Why do we need Git and GitHub? A...00
KGKaushik Gabhaneinkaushik543.hashnode.dev·Dec 19, 2022 · 8 min read🎯Array methods in JS 🎯🎏 Arrays in JS : Arrays come under non-primitive data types in JavaScript and can store more than one type of data in one array. Declaring an array: let arr1 = [1,2,"kaushik",4,5]; console.log(arr1); Output: on terminal PS D:\javascript bootcamp 2...00