After planning the app, the next step is to start coding. Knowing where to start can be overwhelming. I had a hard time figuring out how to start. But sometimes it's better to just start and move on.
Tag: Javascript
React Native Flashcard App from Scratch Part 1-Idea
Have you ever had a brilliant idea super early in the morning. I just did. I have been wanting to work on an actual personal project that didn't come from a tutorial but didn't know what to make. Finally it came to me. Read about my idea and follow along as I continue to build it from an idea to an actual working app.
Redux….. How, What, Where, Why?
After a few days of being confused with coding with Redux I decided to really try to understand what Redux is and why it's used. Here is my post on what I have learned about Redux so far.
Breaking down ES6: filter() Method
In this blog I Breaking down ES6: filter() Method. It is much more efficient than a for loop, and the syntax is very easy to remember. This one is one that I will be using from now on.
Breaking Down ES6: Map Method
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