W3Schools Documentation Array Every
fetch("https://jsonplaceholder.typicode.com/todos")
.then((response) => response.json())
.then((todos) => {
let checked = false;
checked = todos.every((t) => t.id);
console.log(todos, checked);
});