Created
September 26, 2016 20:55
-
-
Save uhtred/ec64752a8e9c9b83922b3ebb36e3ac23 to your computer and use it in GitHub Desktop.
Lodash: toggle array value
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
_.xor([1], [2]); | |
= [1, 2] | |
_.xor([1, 2], [2]); | |
= [1] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Brilliant!