Skip to content

Instantly share code, notes, and snippets.

@codemilli
Created February 11, 2016 17:37
Show Gist options
  • Save codemilli/d68dd22d6681e9bb2703 to your computer and use it in GitHub Desktop.
Save codemilli/d68dd22d6681e9bb2703 to your computer and use it in GitHub Desktop.
pure function 을 이용한 state 값 대체
var state = {
name: 'jooyoung Moon'
};
var reduce = function reduce(state) {
return _.extends({}, state, {
name: 'hckrmoon'
});
};
state = reduce(state);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment