ALAvadhut Loharinavadhut.hashnode.dev·Oct 15, 2022 · 2 min readReact Crash CourseIntro to React What is React? A JavaScript library for building user interfaces Why should we use React? Easier to use Maintainable Scalable Most popular frontend framework Reusable Components Why use Reusable Components? Components help reduce...00
ALAvadhut Loharinavadhut.hashnode.dev·Oct 10, 2022 · 1 min readJavaScript Notes 2Loops For loop while loop do while loop Arrays Data structure that can hold multiple data values in one variable. Methods: arr.length arr.push(); arr.filter( () => {}) it returns a new array arr.map( () => {}) Objects Used to store multiple pro...00
ALAvadhut Loharinavadhut.hashnode.dev·Oct 9, 2022 · 3 min readJavascript NotesVariables let is the preferred way in modern JavaScript. Data Types Null = Null (type of null is an object: its a bug) Null specifies that we have something to store value but that value is simply nonexistent. Undefined = undefined The value is n...00
ALAvadhut Loharinavadhut.hashnode.dev·Oct 8, 2022 · 1 min readNetlifySteps: Create your account on Netlify Create a New Site from GIT. Connect to Git provider. Pick a repository. Once you have picked your repository, deploy your site. Wait for a few seconds and you will get a successful link which is in green c...00
ALAvadhut Loharinavadhut.hashnode.dev·Oct 3, 2022 · 2 min readFlexboxFlexbox By default container has property of display: block; i.e. each element on the next line. display: flex; using this all elements added side by side. once display flex activated on container it unlocks flex-direction ,align-items , justify-co...00