PPrinceKr-Paswaninprincekr-paswan.hashnode.dev·Apr 4, 2023 · 2 min readDay one of learning React.jsWelcome to the world of React! In this blog post, we'll be covering the basics of React and how to get started with it. If you're new to React, you may be wondering what it is and why it's so popular. React is a JavaScript library for building user i...00
PPrinceKr-Paswaninprincekr-paswan.hashnode.dev·Mar 25, 2023 · 2 min readLearning PHP Day OneToday, I began my journey of learning PHP. In my first session, I learned the basics of configuring XAMPP for PHP and where to place files to run them. I also learned about declaring variables, variable types, and how to display output using the echo...00
PPrinceKr-Paswaninprincekr-paswan.hashnode.dev·Jan 28, 2023 · 2 min readHow to Install React-Native in LinuxStep 1: Install Node.js First, you will need to install Node.js on your Linux machine. You can download the installer from the official Node.js website and run it to install Node.js. Step 2: Install the React Native CLI Once Node.js is installed, ...00
PPrinceKr-Paswaninprincekr-paswan.hashnode.dev·Sep 10, 2022 · 6 min readJavaScript Interview Preparation Cheat sheetAll about scope Scope Scope defines the lifetime and visibility of a variable. Variables are not visible outside the scope in which they are declared. Type of Scope JavaScript has JavaScript has module scope, function scope, block scope, lexical scop...01K
PPrinceKr-Paswaninprincekr-paswan.hashnode.dev·Aug 27, 2022 · 5 min readArray In JavaScriptArray JavaScript array is an object that represents a collection of similar type of elements. There are several ways to construct array in JavaScript: By array literal By creating instance of Array directly (using new keyword) Why Use Arrays? If yo...00