MAMiryala Akshithainlearnwithakshitha.hashnode.dev·Dec 9, 2022 · 5 min readSign in with Google ? Do you know why?In every third-party app or website, you are asked to sign in before you make use of the service. Did you ever see a nice fancy sign in with google button ? I suppose you have seen it countless times!! Have you ever wondered why do we have sign in / ...01Z
MAMiryala Akshithainlearnwithakshitha.hashnode.dev·Jan 11, 2022 · 3 min readHoisting and Temporal Dead Zone in JavaScriptHello there! In this blog we will be discussing what Hoisting and Temporal Dead Zone actually are ! Let us have a look at this code snippet Example 1 : var a = 10; function Greetings(){ console.log('hey!'); } Greetings(); //hey! console.log(...00
MAMiryala Akshithainlearnwithakshitha.hashnode.dev·Nov 1, 2021 · 2 min readundefined vs not defined in JavaScriptundefined !== not defined Let us understand the difference between undefined and not defined Let us start Look at the code snippet below let a = 1; console.log(a) //1 Here, We have just assigned 1 to variable a. And if we console.log , we get out...00
MAMiryala Akshithainlearnwithakshitha.hashnode.dev·May 20, 2021 · 2 min readLet's learn about REACT ROUTERLet us learn react-routing Create React App Firstly, Make a folder any where you wish to in your system Go to the folder in the terminal and type the below command,to create react application npx create-react-app your-app NOTE: Make sure you have np...00
MAMiryala Akshithainlearnwithakshitha.hashnode.dev·May 20, 2021 · 2 min readLet us understand Git & GitHubWhat does Git and GitHub even mean? How do they work? Git is a software to track and make changes in your code but only in your device by you. Whereas, GitHub let's anybody from anywhere ,make and track your code. couldn't get it? note: even if anyb...00