--- title: Get State from the Redux Store --- # Get State from the Redux Store --- ## Problem Explanation Retrieve data from store by using `getState()` method. --- ## Solutions
Solution 1 (Click to Show/Hide) ```jsx let currentState = store.getState(); ```