如何检查表是否包含多个相同的属性?

时间:2018-01-31 17:32:13

标签: javascript include

atm我正在学习JS / Angular并使用这些技术制作项目,我需要一些帮助。

table = ['a', 'b', 'c', 'a'];

if(table.includes('a' > 2))  #its not working, idk how to make it
{
   console.log("We have 2 the same atributes in our table");
}

如何实现?

1 个答案:

答案 0 :(得分:0)

您可以过滤数组并检查其长度

if(table.filter(item => item === 'a').length > 1) {

}