AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
## xor + [link](./xor "Link to this entry.") + [source](https://github.com/lodash/lodash/blob/4.5.0正式版/lodash.src.js#L7001 "View in source.") + [npm](https://www.npmjs.com/package/lodash.xor "See the npm package.") ``` _.xor([arrays]) ``` 创建一个包含了所有唯一值的数组。使用了 [symmetric difference](https://en.wikipedia.org/wiki/Symmetric_difference) 等值比较。 ### 参数 1. [arrays] (...Array) 要处理的数组 ### 返回值 (Array) 包含了所有唯一值的新数组 ### 示例 ``` _.xor([2, 1], [4, 2]); // => [1, 4] ```