This PR was automagically generated by Crowdin. (#44733)

This commit is contained in:
camperbot
2022-01-09 19:36:03 +05:30
committed by GitHub
parent 740265fa58
commit cb8e66cbb2
13 changed files with 200 additions and 0 deletions

View File

@ -116,11 +116,25 @@ const usersObj3 = {
## --seed-contents--
```js
const users = {
Alan: {
online: false
},
Jeff: {
online: true
},
Sarah: {
online: false
}
}
function countOnline(usersObj) {
// Only change code below this line
// Only change code above this line
}
console.log(countOnline(users));
```
# --solutions--

View File

@ -72,6 +72,7 @@ function urlSlug(title) {
}
// Only change code above this line
urlSlug("A Mind Needs Books Like A Sword Needs A Whetstone");
```
# --solutions--