Why getting NaN on redux while adding a number
I am learning redux. I am trying to learn redux by increment decrementing value. I have written a code. While I am dispatching INCREMENT_BY_VALUE it is showing NaN But INCREMENT, DECREMENT and RESET are working properly. Here is my code: const { createStore } = require("redux") const INCREMENT = ‘INCREMENT’ const DECREMENT = ‘DECREMENT’ const… Read More Why getting NaN on redux while adding a number