From ad15c3d076862ad3f5af3d3145e9574d30a814ea Mon Sep 17 00:00:00 2001 From: Kshitij Potdar <121808995+KshitijPotdar@users.noreply.github.com> Date: Thu, 16 May 2024 18:24:23 +1200 Subject: [PATCH] Update 01_javascript_refresher.md The same sentence was write 2 times in a row by mistake on line 239. --- 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..d9091149b4 100644 --- a/01_Day_JavaScript_Refresher/01_javascript_refresher.md +++ b/01_Day_JavaScript_Refresher/01_javascript_refresher.md @@ -236,7 +236,7 @@ Open the browser console to see the output from the console.log() #### External Script Similar to the internal script, the external script link can be on the header or body, but it is preferred to put it in the body. -First, we should create an external JavaScript file with .js extension. All files ending with .js extension. All files ending with .js extension are JavaScript files. Create a file named introduction.js inside your project directory and write the following code and link this .js file at the bottom of the body. +First, we should create an external JavaScript file with .js extension. All files ending with .js extension are JavaScript files. Create a file named introduction.js inside your project directory and write the following code and link this .js file at the bottom of the body. ```js console.log('Welcome to 30DaysOfJavaScript')