remove redundant line in external script section

remove redundant line in external script section
https://github.com/Asabeneh/30-Days-Of-React/edit/master/01_Day_JavaScript_Refresher/01_javascript_refresher.md#external-script
pull/238/head
tlx-team 3 years ago committed by GitHub
parent d0c066fcb9
commit 1f38e8efba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -236,7 +236,7 @@ Open the browser console to see the output from the console.log()
#### External Script #### 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. 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 ```js
console.log('Welcome to 30DaysOfJavaScript') console.log('Welcome to 30DaysOfJavaScript')

Loading…
Cancel
Save