2 lines
82 B
JavaScript
2 lines
82 B
JavaScript
const union = (a, b) => Array.from(new Set([...a, ...b]));
|
|
module.exports = union |