scrimba
React Bootcamp Course
Plain JS Redux - dispatch
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Plain JS Redux - dispatch
AboutCommentsNotes
Plain JS Redux - dispatch
Expand for more info
index.js
run
preview
console
const redux = require("redux")

function increment() {
return {
type: "INCREMENT"
}
}

function decrement() {
return {
type: "DECREMENT"
}
}

function reducer(state = {count: 0}, action) {
// return new state based on the incoming action.type
switch(action.type) {
case "INCREMENT":
return {
count: state.count + 1
}
case "DECREMENT":
return {
count: state.count - 1
}
default:
return state
}
}

const store = redux.createStore(reducer)
store.subscribe(() => {
console.log(store.getState())
})

Console
/index.html
-5:15