1 00:00:00,650 --> 00:00:06,470 Hello, everyone, welcome back to my course, learn to code in JavaScript, this is lecture to where 2 00:00:06,500 --> 00:00:10,850 we're going to talk about the course overview and what's covered in this course. 3 00:00:12,590 --> 00:00:15,200 So in this course, we've been talking about running a JavaScript program. 4 00:00:15,200 --> 00:00:19,910 How are we going to write and run JavaScript programs, which is going to talk about Visual Studio code, 5 00:00:19,910 --> 00:00:23,420 our ED Live server, how we actually run the program? 6 00:00:24,290 --> 00:00:28,820 We're going to create a Hello World program that's kind of credited for you already, but we're going 7 00:00:28,820 --> 00:00:35,990 to play with it and then we'll cover primness data types, which is things like numbers and booleans 8 00:00:35,990 --> 00:00:44,750 and just individual data types, operators such as adding, subtracting and other types of operations 9 00:00:45,590 --> 00:00:46,520 string's. 10 00:00:47,860 --> 00:00:57,490 Dates raised so we can cover how to store multiple values, so store 50 numbers as an example, conditionals, 11 00:00:57,490 --> 00:01:04,520 how do you branch how do you say if this is true, then do this, otherwise do that looping. 12 00:01:04,930 --> 00:01:12,700 How do you say we're going to do something 50 times objects as a way to package data and functions up 13 00:01:12,970 --> 00:01:19,000 into one variable so that you can pass it around and make use of it and store multiples of them. 14 00:01:19,010 --> 00:01:22,710 You can have arrays of objects, for example, functions. 15 00:01:22,720 --> 00:01:29,610 How do you break down a program into smaller pieces and make it easier to understand classes and modules 16 00:01:29,620 --> 00:01:31,080 a little bit more object oriented? 17 00:01:31,360 --> 00:01:35,020 And how do you share a code between modules? 18 00:01:36,340 --> 00:01:39,630 And finally, we're going to put it all together and create something with what we've learned. 19 00:01:40,690 --> 00:01:41,920 So I'm excited to get going. 20 00:01:42,230 --> 00:01:46,840 We're going to start out with the whole world, some information about what JavaScript is and how to 21 00:01:46,840 --> 00:01:47,590 create a program. 22 00:01:47,890 --> 00:01:49,060 I'll see you in that section.