使用下划线库将数字与字符串相交

Intersection of a number on string using underscore library

我有两个输入,一个是这个。

Data1: 1
Data 2: [1]

但是如果我像这样使用._

_.intersection(data2,data1)

它给了我这样的结果。

Intersection: []

我做错了什么?

.intersection 函数似乎需要数组作为参数,您正在将第一个值作为数字传递,尝试像这样作为数组传递:

...
data1 = 1;
data2 = [1];
_.intersection(data2,[data1]);
...