Compare two arrays and return a new array with any items only found in one of the two given arrays, but not both. In other words, return the symmetric difference of the two arrays. **注意:**返回数组中的元素顺序不会影响挑战的测试结果。 ------------------------------------------------------------- ...
函数的元 数 是指它需要的参数的数量。 柯里化 函数意味着将一个元数为 N 的函数转换为一个元数为 N 的函数。 换句话说,它重构一个函数,使其接受一个参数,然后返回另一个接受下一个参数的函数,依此类推。 以下是一个例子: function unCurried ( x , y ) { return x + y ; } functi ...