Last active
November 2, 2020 23:11
-
-
Save heanfig/9c1b43691de7d489ebdf64b0654a0665 to your computer and use it in GitHub Desktop.
Simetric difference 1
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
function sym(...args) { | |
console.log(args) // [[3, 3, 3, 2, 5], [2, 1, 5, 7], [3, 4, 6, 6]] | |
} | |
sym([3, 3, 3, 2, 5], [2, 1, 5, 7], [3, 4, 6, 6]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment