From e7a2adc9475a07a45fe6ef298d6d88176693ceb3 Mon Sep 17 00:00:00 2001 From: Asabeneh Date: Thu, 9 Jan 2020 14:43:40 +0200 Subject: [PATCH] day 8 fixes --- 08_Day/08_day_objects.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/08_Day/08_day_objects.md b/08_Day/08_day_objects.md index fdc47d96..069fbcd6 100644 --- a/08_Day/08_day_objects.md +++ b/08_Day/08_day_objects.md @@ -26,7 +26,7 @@ - [Window Scope](#window-scope) - [Global scope](#global-scope) - [Local scope](#local-scope) - - [📔 Object](#-object) + - [📔 Object](#%f0%9f%93%94-object) - [Creating an empty object](#creating-an-empty-object) - [Creating an objecting with values](#creating-an-objecting-with-values) - [Getting values from an object](#getting-values-from-an-object) @@ -37,7 +37,7 @@ - [Getting object values using Object.values()](#getting-object-values-using-objectvalues) - [Getting object keys and values using Object.entries()](#getting-object-keys-and-values-using-objectentries) - [Checking properties using hasOwnProperty()](#checking-properties-using-hasownproperty) - - [💻 Exercises](#-exercises) + - [💻 Exercises](#%f0%9f%92%bb-exercises) # Day 8 @@ -113,7 +113,7 @@ function letsLearnScope() { console.log(a, b, c) // Python 20 30 } // we can not access c because c's scope is only the if block - console.log(a, b) + console.log(a, b) // JavaScript 10 } letsLearnScope() console.log(a, b) // JavaScript 10, accessible