From 071f46b23ffb5fd61195adfa0711101f7a52b379 Mon Sep 17 00:00:00 2001 From: CoolGuy <0jaseel0@gmail.com> Date: Wed, 19 Jul 2017 20:57:23 +0530 Subject: [PATCH] Removed empty code block Removed an empty code block at the end of the page --- 1-js/05-data-types/08-keys-values-entries/article.md | 1 - 1 file changed, 1 deletion(-) diff --git a/1-js/05-data-types/08-keys-values-entries/article.md b/1-js/05-data-types/08-keys-values-entries/article.md index 88f12669..083ed9a3 100644 --- a/1-js/05-data-types/08-keys-values-entries/article.md +++ b/1-js/05-data-types/08-keys-values-entries/article.md @@ -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. -```