How to check if array contains at least one object ?

前端 未结 5 1786
余生分开走
余生分开走 2021-02-08 13:04

I want to check if array contains object or not. I am not trying to compare values just want to check in my array if object is present or not?

Ex.

$arr =         


        
5条回答
  •  遥遥无期
    2021-02-08 13:32

    With a type check on array

    const hasObject = a => Array.isArray(a) && a.some(val => typeof val === 'object')
    

提交回复
热议问题