We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents acfb23f + 0aaa498 commit 5ad8c9fCopy full SHA for 5ad8c9f
1-js/04-object-basics/01-object/3-is-empty/solution.md
@@ -2,7 +2,7 @@ Just loop over the object and `return false` immediately if there's at least one
2
3
```js
4
function isEmpty(obj) {
5
- for(let key in obj) {
+ for (let key in obj) {
6
return false;
7
}
8
return true;
0 commit comments