Merge pull request #13 from iemprashant/master

Minor fix:- images path
pull/14/head
Asabeneh 5 years ago committed by GitHub
commit d7eda06d39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -231,7 +231,7 @@ This is how we write an internal script most of the time. Writing the JavaScript
Open the browser console to see the output from the console.log() Open the browser console to see the output from the console.log()
![js code from vscode](./images/js_code_vscode.png) ![js code from vscode](../images/js_code_vscode.png)
#### External Script #### External Script
@ -297,7 +297,7 @@ console.log('Hello, World!')
_Your main.js file should be below all other scripts_. It is very important to remember this. _Your main.js file should be below all other scripts_. It is very important to remember this.
![Multiple Script](./images/multiple_script.png) ![Multiple Script](../images/multiple_script.png)
### 1. Variables ### 1. Variables
@ -433,7 +433,7 @@ console.log(words)
We access each element in an array using their index. An array index starts from 0. The picture below clearly shows the index of each element in the array. We access each element in an array using their index. An array index starts from 0. The picture below clearly shows the index of each element in the array.
![arr index](./images/array_index.png) ![arr index](../images/array_index.png)
```js ```js
const fruits = ['banana', 'orange', 'mango', 'lemon'] const fruits = ['banana', 'orange', 'mango', 'lemon']

Loading…
Cancel
Save