谷歌表脚本,如何检查字符串是否已经在数组中?

时间:2016-11-02 12:58:49

标签: javascript google-sheets

这个索引现在不再起作用了。方法valueOf但似乎做了不同的事情。 我试图做那样的事情:

button

不这样做。

1 个答案:

答案 0 :(得分:1)

我不完全确定我是否正确回答了这个问题。

我假设您的数组不会只包含一个元素,因此我们假设您想要从3中返回2封电子邮件。

var array = [];
array.push("example@email.com");
array.push("example2@email.com");
array.push("example3@email.com");


console.log(array.includes("example@email.com", "example2@email.com")); //returns true

这是一种使用数组对象上的'includes'方法返回值是否在数组中的非常简单的方法。

参考:https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/includes