InterviewSolution
Saved Bookmarks
| 1. |
What are constants in Redux? |
|
Answer» Constants in REDUX help us in easily finding all the usages of a PARTICULAR functionality across our entire project when we are using an Integrated Development Environment (IDE). Using constants, we can avoid SILLY bugs CAUSED because of typing ERRORS or typos as it shows a "ReferenceError" whenever a typo is made. |
|