I can’t check if `.childNodes[1].childNodes[1]` exists or not

277 Views Asked by At
Array.from(document.querySelectorAll('.thread')).map((item) => {
    
    if(item.childNodes[1].childNodes[1] === undefined){
        console.log('hey')
    }
})

enter image description here

My point is, if there is no item.childNodes[1].childNodes[1] then do something. That’s it.

1

There are 1 best solutions below

2
On

You can make use of optional chaining :-

if(item?.childNodes?.[1]?.childNodes?.[1] === undefined){
        console.log('hey')
    }