Created
June 12, 2018 16:56
-
-
Save ahmehri/a2c30c7e7aa1db7cfbf41f5ae082434a to your computer and use it in GitHub Desktop.
This file contains hidden or 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 _ = require('lodash'); | |
let original = [1, 2]; | |
// 2 has been removed, 3 has been added | |
let after = [1, 3]; | |
console.log('removal:', _.difference(original, after)); | |
console.log('addition:', _.difference(after, original)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment