Skip to content

Instantly share code, notes, and snippets.

@joaomilho
Created June 3, 2016 23:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joaomilho/d7ef44727196fb6a7f1c4a754a06a538 to your computer and use it in GitHub Desktop.
Save joaomilho/d7ef44727196fb6a7f1c4a754a06a538 to your computer and use it in GitHub Desktop.
A calculatorReducer in JS
const calculatorReducer = (state, { type, payload }) {
switch (type) {
case 'add':
return state + payload
case 'subtract':
return state - payload
case 'multiply':
return state * payload
case 'divide':
return state / payload
default:
return state
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment