mayankarote.hashnode.devLearning ReactHello guy's I have been started learning React so I would love to share my knowledge with you and I hope you find it useful.Okay So Let's start from basics, HTML - Basics of HTML, Semantic HTML, Dividing page into sections and structure the DOM prop...May 21, 2021·1 min read
mayankarote.hashnode.dev#30DaysofReact #Day6React.js React is a JavaScript framework which abstracts the view layer of an application. When using React you split up your application in lots of smaller components. A component consists of event handling, styling and sometimes state. This makes ...Mar 5, 2021·2 min read
mayankarote.hashnode.dev#30DaysofReact #Day6React.js React is a front-end library developed by Facebook. It is used for handling the view layer for web and mobile apps. ReactJS allows us to create reusable UI components. It is currently one of the most popular JavaScript libraries and has a st...Mar 4, 2021·1 min read
mayankarote.hashnode.dev#30DaysofReact #Day5Event Handling What is an Event? JavaScript's interaction with HTML is handled through events that occur when the user or browser manipulates a page. When the page loads, When the user clicks a button, pressing any key, closing a window, resizing a ...Mar 3, 2021·2 min read
mayankarote.hashnode.dev#30DaysofReact #Day4ES8(2017) new features: 1.Async & Await Functions 2.Object.values/Object.entries 3.String padding 4.Trailing commas 1. Async and Await Functions:- Async/Await is a very important feature in ES8.It is a syntactic sugar for Promises in JavaScript. The...Mar 2, 2021·5 min read