diff --git a/01_Day_JavaScript_Refresher/01_javascript_refresher.md b/01_Day_JavaScript_Refresher/01_javascript_refresher.md index 7d03fb4..1a3f57a 100644 --- a/01_Day_JavaScript_Refresher/01_javascript_refresher.md +++ b/01_Day_JavaScript_Refresher/01_javascript_refresher.md @@ -3005,7 +3005,7 @@ const fullStack = [ ] for (const [first, second, third, fourth] of fullStack) { - console.log(first, second, third, fourt) + console.log(first, second, third, fourth) } ``` @@ -3075,7 +3075,8 @@ const rectangle = { height: 10, } -let { width, height, perimeter } = rectangleconsole.log( +let { width, height, perimeter } = rectangle +console.log( width, height, perimeter