Basic Data Structures - Iterate Through the Keys of an Object with a for...in Statement

Tell us what’s happening:
Describe your issue in detail here.
I have no idea whe te console keeps logging 0 instead of 1

  **Your code so far**
const users = {
Alan: {
  online: false
},
Jeff: {
  online: true
},
Sarah: {
  online: false
}
}
function countOnline(usersObj) {
// Only change code below this line
let count = 0;
for (let user in usersObj)
{
if (usersObj[user].online == true)
{
  count++;
}
  return count; 
}
// Only change code above this line
}

console.log(countOnline(users));
  **Your browser information:**

User Agent is: Mozilla/5.0 (Linux; Android 9; MRD-LX1F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Mobile Safari/537.36

Challenge: Basic Data Structures - Iterate Through the Keys of an Object with a for…in Statement

Link to the challenge:

Try placing your return statement outside of the loop.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.