React Redux is the official React UI bindings layer. It is used mostly for application state management. To summarize it, Redux maintains the state of an entire application in a single immutable state tree (object), which can’t be changed directly.
Redux concepts might sound complicated or fancy, but they’re simple. Redux has three building parts: actions, store and reducers.
Redux…
In studying JavaScript, “Object” is unavoidable. A lot of people when they start studying “Object” must get confused. At least I did! This is why I am writing this article to get more familiar with them and knock them out!!!
In this article, you will learn what is “Object” and how to use them.
Object is one of the fundamental data types in JavaScript. There are variable which stores only one value and array which stores multiple…
When you start studying JavaScript, you would hear “JavaScript is Synchronous.” and then, you would be like “….?”. Don’t worry! It happened to me too! Today, I will dive into what is Synchronous and Asynchronous, and how to control them.
01 — What is Synchronous and Asynchronous?
Synchronicity means “doing something at the same time, and happening at the same time”.
Asynchronous means “doesn’t happen at the same time”.
02 — Is JavaScript Synchronous?
First, JavaScript is single-threaded language. In other words, JavaScript is not able to do something at the same time. JavaScript runs codes in orders. However, JavaScript…
Starter FrontEnd Developer based in Vancouver, Canada.