1
00:00:02,080 --> 00:00:05,640
Now that we explored the fundamental basics

2
00:00:05,640 --> 00:00:07,820
of JavaScript that you need to know

3
00:00:07,820 --> 00:00:11,070
and that we also explored how we can interact

4
00:00:11,070 --> 00:00:14,240
with the websites that is displayed on the page

5
00:00:14,240 --> 00:00:17,490
with help of the DOM, in this course section,

6
00:00:17,490 --> 00:00:21,260
we are going to stay in the JavaScript world,

7
00:00:21,260 --> 00:00:25,560
but we will dive into control structures,

8
00:00:25,560 --> 00:00:30,560
which are special language features that allow us to control

9
00:00:31,270 --> 00:00:33,770
if certain code is executed

10
00:00:33,770 --> 00:00:37,870
so we can implement conditional code execution

11
00:00:37,870 --> 00:00:41,730
and how often some code is executed

12
00:00:41,730 --> 00:00:46,000
so we'll be able to execute some code repeatedly

13
00:00:46,000 --> 00:00:50,740
based on some condition or certain circumstances,

14
00:00:50,740 --> 00:00:53,680
which we, as a developer, can set.

15
00:00:53,680 --> 00:00:54,990
Now, we are going to learn

16
00:00:54,990 --> 00:00:57,230
all about that in this course section,

17
00:00:57,230 --> 00:01:00,970
and as always, we are going to learn about that in theory,

18
00:01:00,970 --> 00:01:03,393
but also with concrete examples.

