Skip to content

Commit 0aaa498

Browse files
authored
Spacing
1 parent 43c1978 commit 0aaa498

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)