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