A little bit of discipline can help you load the application faster and interact faster with any device. Your application should load fast and be interactive as soon as possible. For this, you have to follow some rules. Let’s get started
Category: Javascript
State vs Props in React
props and state hold information and it’s related to the component, they look similar but used differently and should be kept separate.
props – It’s set by the parent component and should not be changed.
state – Allows React components to dynamically change output over time in response to certain events.
What’s new in ES6
ECMAScript is the standardized name for JavaScript. ECMAScript 6, is the new version of ECMAScript. ECMAScript 6, also known as ECMAScript 2015.
Let’s get started what’s new in ES6
An Introduction to Redux
Redux is a predictable state container for JavaScript apps. It’s a popular library to manage state in React apps. Redux maintains the state of an entire application in a single immutable state tree (object), which can’t be changed directly. When something changes, a new object is created (using actions and reducers).
Benefits Of Redux
Getting Started With JSX
JSX stands for JavaScript XML. It’s a language extension for writing the UI logic for your React components. It’s an XML/HTML-like syntax and it gets transpiled by Babel. React can work without using JSX but it’s recommended and ideal technology to work with components.