Skip to content

Commit 0962a27

Browse files
authored
Merge pull request #103 from Cool-Guy1999/patch-1
Removed empty code block
2 parents a2bbf63 + 071f46b commit 0962a27

File tree

1 file changed

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

1 file changed

+0
-1
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,3 @@ for(let value of Object.values(user)) {
6868
Just like a `for..in` loop, these methods ignore properties that use `Symbol(...)` as keys.
6969

7070
Usually that's convenient. But if we want symbolic keys too, then there's a separate method [Object.getOwnPropertySymbols](mdn:js/Object/getOwnPropertySymbols) that returns an array of only symbolic keys. Also, the method [Reflect.ownKeys(obj)](mdn:js/Reflect/ownKeys) returns *all* keys.
71-
```

0 commit comments

Comments
 (0)