Skip to content

Commit ecc4f6d

Browse files
authored
Merge pull request javascript-tutorial#268 from usernamehw/patch-15
Update article.md
2 parents 42ca672 + 4490ce6 commit ecc4f6d

File tree

1 file changed

+1
-1
lines changed
  • 1-js/05-data-types/08-keys-values-entries

1 file changed

+1
-1
lines changed

1-js/05-data-types/08-keys-values-entries/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ let user = {
5858
};
5959

6060
// loop over values
61-
for(let value of Object.values(user)) {
61+
for (let value of Object.values(user)) {
6262
alert(value); // John, then 30
6363
}
6464
```

0 commit comments

Comments
 (0)