Skip to content

Commit

Permalink
Minor images path fix
Browse files Browse the repository at this point in the history
  • Loading branch information
commentedcodeX committed Oct 3, 2020
1 parent 8ccec4d commit 70f069d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions 01_Day_JavaScript_Refresher/01_javascript_refresher.md
Original file line number Diff line number Diff line change
Expand Up @@ -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()

![js code from vscode](./images/js_code_vscode.png)
![js code from vscode](../images/js_code_vscode.png)

#### External Script

Expand Down Expand Up @@ -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.

![Multiple Script](./images/multiple_script.png)
![Multiple Script](../images/multiple_script.png)

### 1. Variables

Expand Down Expand Up @@ -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.

![arr index](./images/array_index.png)
![arr index](../images/array_index.png)

```js
const fruits = ['banana', 'orange', 'mango', 'lemon']
Expand Down

0 comments on commit 70f069d

Please sign in to comment.