MGMamta Guptainmamtagupta.hashnode.dev·Mar 6, 2023 · 10 min readJS Hot QuestionRecently while preparing for a javascript interview I revised foundational questions of javascript and shared a few goods with you. 1. Check if an object is an array. let arr = [1,2,3,4,5] // METHOD 1 console.log(toString.call(arr) === "[object Arra...00
MGMamta Guptainmamtagupta.hashnode.dev·Jan 20, 2023 · 3 min readWhat happens when you type a URL in a browser?How Web works? Let's understand in brief the browser functionality URL Structure: A URL, short for a uniform resource locator is a web address pointing to a specific website, a web page, or a document on the internet. What happens when you type a URL...00
MGMamta Guptainmamtagupta.hashnode.dev·Jan 18, 2023 · 1 min readReact: Day 7Felt like the right time to start making smaller projects to start working on the learnings we have done in the last week. Starting with the basic calculator, Operation seems to be easier but as far as I have come I feel like the calculator needs mo...00
MGMamta Guptainmamtagupta.hashnode.dev·Jan 12, 2023 · 1 min readReact: Day 6Getting to know more useState hooks: Started by creating a simple form with a username and password. Creating an object using to keep track of variable and set value of valriables. I have been designing this first time so I might going to have very s...00
MGMamta Guptainmamtagupta.hashnode.dev·Jan 11, 2023 · 1 min readReact: Day 5React useState Intro coming from quite structured language (angular) forms, where ngModel played an important role. In react maintaining the transparency between the input value and storing has been done very quickly the way I must say. I've been f...00