You are viewing a single comment's thread. Return to all comments →
function getCount(objects) { let count = 0; for (let i = 0; i < objects.length; i++) { const arr = Object.values(objects[i]); if (arr[0] === arr[1]) { count++; } } console.log("total", count); return count; }
Seems like cookies are disabled on this browser, please enable them to open this website
Day 4: Count Objects
You are viewing a single comment's thread. Return to all comments →