Removed empty code block

Removed an empty code block at the end of the page
This commit is contained in:
CoolGuy 2017-07-19 20:57:23 +05:30 committed by GitHub
parent 7ef8f49f9a
commit 071f46b23f

View file

@ -68,4 +68,3 @@ for(let value of Object.values(user)) {
Just like a `for..in` loop, these methods ignore properties that use `Symbol(...)` as keys.
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.
```