Skip to content

Commit 90ce021

Browse files
author
Mathias Bockwoldt
authored
Added missing semicolon
To be consistent, I added a semicolon after a `let` command
1 parent dc904d1 commit 90ce021

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/04-object-basics/01-object/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ let obj = {
205205
for: 1,
206206
let: 2,
207207
return: 3
208-
}
208+
};
209209
210210
alert( obj.for + obj.let + obj.return ); // 6
211211
```

0 commit comments

Comments
 (0)