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.

Your code so far

const users = {
  Alan: {
    online: false
  },
  Jeff: {
    online: true
  },
  Sarah: {
    online: false
  }
}

function countOnline(allUsers) {
  // Only change code below this line
  for (const online in allUsers) {
    if (online.hasOwnProperty("Jeff")) {
      return true;
    } else {
      return false;
    }
  }
  // Only change code above this line
}

console.log(countOnline(users));

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 YaBrowser/23.11.0.0 Safari/537.36

Challenge Information:

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

The code doesn’t work, I don’t know the reason, Jeff is there, why does it work in the previous one, but doesn’t work here anymore, there’s confusion again

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.

You are supposed to return a count (a number) from the function.

The function countOnline should return 1 when the object { Alan: { online: false }, Jeff: { online: true }, Sarah: { online: false } } is passed to it

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