Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/redux/3.0.4/redux.min.js"></script>
</head>
<body>
</body>
</html>
 
const counter = (state = 0, action) => {
  switch(action.type){
    case 'INCREMENT':
      return state + 1;
    case 'DECREMENT':
      return state - 1;
    default:
      return state;
  }
}
//created a basic counter using redux
const { createStore } = Redux;
// var createStore = Redux.createStore; //es5
// import { createStore } from 'redux' //babel import
const store = createStore(counter);
console.log(store.getState());
// created a new reducer using pure function counter
store.dispatch({type: 'INCREMENT' });
console.log(store.getState());
store.dispatch({type: 'DECREMENT'});
console.log(store.getState());
store.dispatch({type: 'DECREMENT'});
console.log(store.getState());
store.dispatch({type: 'INCREMENT' });
console.log(store.getState());
store.dispatch({type: 'INCREMENT' });
console.log(store.getState());
store.dispatch({type: 'INCREMENT' });
console.log(store.getState());
// redux does not set State it returns the state to its original state after execution (immutable)
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
fr-kshibatapro
0viewers