W3Schools Documentation Array ForEach
fetch("https://jsonplaceholder.typicode.com/todos") .then((response) => response.json()) .then((todos) => { let sum = 0; todos.forEach((t) => sum++); console.log(sum); });