What is var, let, const in javaScript

What are Variables? Variables are containers for storing data (storing data values). 3 Ways to Declare a JavaScript Variable Using var Using let Using const When to Use JavaScript var? Always declare JavaScript…

What is Redux

1. What is Redux. -Redux is a predictable state container for javascript applications. -Redux is a state management library. -Redux stores the state of our application. -With Redux the state is…