We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43c1978 commit 0aaa498Copy full SHA for 0aaa498
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