This question already has answers here:
How do I find an array item with TypeScript? (a modern, easier way)
                                
                                    (5个答案)
                                
                        
                2年前关闭。
            
        

javascript - 对象的Javascript数组检查 key-LMLPHP

所以我的问题是如何通过“键”检查对象数组,例如,我想检查键3892是否存在,我尝试了indexOf但没有运气,我不能使用循环。

最佳答案

您可以使用some()hasOwnProperty()



var array = [{3892: 'value'}, {1234: 'value'}];

var check = array.some(obj => obj.hasOwnProperty(3892));
console.log(check)

09-17 16:00