1
00:00:02,020 --> 00:00:03,420
Now to get started.

2
00:00:03,420 --> 00:00:06,320
I am again back in an empty project

3
00:00:06,320 --> 00:00:08,590
and I'll do what we did many times before,

4
00:00:08,590 --> 00:00:12,760
create a new HTML file with a basic skeleton.

5
00:00:12,760 --> 00:00:15,820
Here, I'll say Advanced JavaScript,

6
00:00:15,820 --> 00:00:18,660
and I'll add a JavaScript file.

7
00:00:18,660 --> 00:00:20,810
I'll name it app.js

8
00:00:20,810 --> 00:00:25,130
which I wanna import in my HTML file.

9
00:00:25,130 --> 00:00:27,010
And we did learn that this works

10
00:00:27,010 --> 00:00:29,680
with help of those script tags,

11
00:00:29,680 --> 00:00:32,950
where we can add this source attribute

12
00:00:32,950 --> 00:00:36,633
and then import this JavaScript file like this.

13
00:00:37,950 --> 00:00:41,370
Now we're ready to write more JavaScript code

14
00:00:41,370 --> 00:00:46,370
and therefore I'll open this site with my live server again

15
00:00:46,380 --> 00:00:48,620
so that we have this preview

16
00:00:48,620 --> 00:00:51,500
and we will continue working with that console

17
00:00:51,500 --> 00:00:53,600
in the developer tools for now,

18
00:00:53,600 --> 00:00:57,380
so that I don't use alerts for outputting something,

19
00:00:57,380 --> 00:00:59,450
but instead this console here,

20
00:00:59,450 --> 00:01:03,180
which is a bit less annoying for us as a developer.

21
00:01:03,180 --> 00:01:04,099
And with that,

22
00:01:04,099 --> 00:01:07,223
we got the setup we need to dive in and get started.

