Created
December 8, 2016 10:56
-
-
Save hcarreras/2f22bc32217362d57e91a5b3a7306201 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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