Skip to content

Instantly share code, notes, and snippets.

@uhtred
Created September 26, 2016 20:55
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uhtred/ec64752a8e9c9b83922b3ebb36e3ac23 to your computer and use it in GitHub Desktop.
Save uhtred/ec64752a8e9c9b83922b3ebb36e3ac23 to your computer and use it in GitHub Desktop.
Lodash: toggle array value
_.xor([1], [2]);
= [1, 2]
_.xor([1, 2], [2]);
= [1]
@Martian2Lee
Copy link

Brilliant!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment