The Map Method is used to transform all the data in an array and save the new data into an array without changing the original data. Learn how to do it and why to use it.
Breaking Down ES6: ForEach() Method
The thing about ES6 is that it's great changes but there is so many of them so I decided to take one day to understand them. So the first one is the for Each method. You might be thinking why would I want to learn the forEach method when I can do the same thing… Continue reading Breaking Down ES6: ForEach() Method
Before React: Learn a few more Javascript Items Part2
Some of the things in React and Redux make more sense when understanding why things are written the way they are.
Before you dive into React learn a few more Javascript items.
Working on react these past few weeks I have to warn you that before you move on to the React make sure you are comfortable working with the following concepts. The reason I am saying this is because I learned this the hard way. I knew Javascript or so I thought. I knew V5 of… Continue reading Before you dive into React learn a few more Javascript items.
Creating a form with React
Let's create a simple form where all it does is take the submission and displays it. Yes it sounds simple but there is a lot going on where it can get confusing. But once you get the basics down then everything else that has to do with a form is just an extension of this.… Continue reading Creating a form with React
Styling a React App
As if working on the functionality of an web application wasn't enough, you are also expected to style it and make it look nice. I had the hardest time figuring out the easiest but also the "appropriate" way of doing so. Searching around the internet I couldn't find something to tell me this is the… Continue reading Styling a React App
Lifecycle of a Component in React
There's a lot going on with a component that we don't realize, but before we get into it we need to discuss a term and that is mounting. You might remember from our initial discussion on React that React works with virtual DOMs that update the real DOM as needed. Mounting is the process of converting… Continue reading Lifecycle of a Component in React
Day 8: What is state, how is different than props?
State in React: Sounds easy in theory but can be a bit complicated to implement. #MomsCanCode #Codergirls #WomenInTech #TechLadies #LearnReact
Day 7: Using Props in React
Read about how to Use Props in React. Follow along as we make our data dynamic with props.
Day 6: What Makes React Interactive.
It's not good practice to have a powerful tool like React and not take advantage of of it's power. In our Twitter Timeline that we created yesterday we hard coded all the information in ourselves, which defeats the purpose of using React, we could've done the same thing much faster with simple HTML. So let's… Continue reading Day 6: What Makes React Interactive.