Skip to content

Commit 5ad8c9f

Browse files
authored
Merge pull request #222 from usernamehw/patch-3
Spacing
2 parents acfb23f + 0aaa498 commit 5ad8c9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/04-object-basics/01-object/3-is-empty/solution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Just loop over the object and `return false` immediately if there's at least one
22

33
```js
44
function isEmpty(obj) {
5-
for(let key in obj) {
5+
for (let key in obj) {
66
return false;
77
}
88
return true;

0 commit comments

Comments
 (0)