Skip to content

Instantly share code, notes, and snippets.

@arturovt
Created June 6, 2019 23:23
Show Gist options
  • Select an option

  • Save arturovt/448a05e72bd1a926219c73f44d913638 to your computer and use it in GitHub Desktop.

Select an option

Save arturovt/448a05e72bd1a926219c73f44d913638 to your computer and use it in GitHub Desktop.
function reducer(state: number[]) {
const newState = [...state]; // BAD
const newState = [].concat(state); // BAD
const newState = state.slice(); // BEST
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment