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");
}
如何实现?
答案 0 :(得分:0)
您可以过滤数组并检查其长度
if(table.filter(item => item === 'a').length > 1) {
}