From 8ac63c29b38275c9615572221c72e3bf506e07a7 Mon Sep 17 00:00:00 2001 From: Abu Usaid <84924763+AbuUsaid@users.noreply.github.com> Date: Fri, 12 Jan 2024 17:08:18 +0530 Subject: [PATCH] Fix typo in index This commit fixes a typo in the index file of the 30 Days of React project. The typo was in the line "Creating an objecting with values", which should be "Creating an object with values". This correction improves the readability and clarity of the instructions for the learners. No other changes were made to the file or the project. --- 01_Day_JavaScript_Refresher/01_javascript_refresher.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01_Day_JavaScript_Refresher/01_javascript_refresher.md b/01_Day_JavaScript_Refresher/01_javascript_refresher.md index 7d03fb40af..61bf455a11 100644 --- a/01_Day_JavaScript_Refresher/01_javascript_refresher.md +++ b/01_Day_JavaScript_Refresher/01_javascript_refresher.md @@ -85,7 +85,7 @@ - [Local scope](#local-scope) - [7. Object](#7-object) - [Creating an empty object](#creating-an-empty-object) - - [Creating an objecting with values](#creating-an-objecting-with-values) + - [Creating an object with values](#creating-an-objecting-with-values) - [Getting values from an object](#getting-values-from-an-object) - [Creating object methods](#creating-object-methods) - [Setting new key for an object](#setting-new-key-for-an-object)