const $humans = await data.response.items.filter($humans => {
if(если есть ХОТЯБЫ ОДИН параметр last_seen) {
return $humans.last_seen.time < (time - $hours)
} else if(если ВООБЩЕ В МАССИВЕ НЕТ НИ ОДНОГО подмассива last_seen) {
// то выполнить some code
}
})
document.getElementById("show_more").addEventListener('click', () => {
$('#some_block').removeClass('d-none')
})
const $humans = await data.response.items.filter($humans => {
if($humans.hasOwnProperty('last_seen')) {
return $humans.last_seen.time < (time - $hours)
} else if(code here) {
// code here
}
})