Chen

Results 1 comments of Chen

> 不会受到长度影响 > > ``` > let intersection = (...arg) => { > let result = []; > arg[0].forEach((v) => { > if (arg[1].indexOf(v) !== -1) { > result.push(v); >...