Skip to content

Instantly share code, notes, and snippets.

@hcarreras
Created December 8, 2016 10:56
Show Gist options
  • Save hcarreras/2f22bc32217362d57e91a5b3a7306201 to your computer and use it in GitHub Desktop.
Save hcarreras/2f22bc32217362d57e91a5b3a7306201 to your computer and use it in GitHub Desktop.
const newArr = array1.reduce((sum, curr, idx) => {
const existsAt = array2.findIndex(orgItem => orgItem.id === curr.id)
if (existsAt !== -1) {
return [...sum.splice(0, idx), array2[existsAt], ...sum.splice(idx + 1)]
}
return [...sum, curr]
}, [])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment