1
00:00:00,900 --> 00:00:06,660
Now that we've seen some basic examples of classes inside of TypeScript, let's have a very quick discussion

2
00:00:06,660 --> 00:00:08,730
on why we care about them and where we use them.

3
00:00:09,150 --> 00:00:12,960
Well, essentially why we care about classes and where we're going to use them comes back to the same

4
00:00:12,960 --> 00:00:14,850
reason we care about interfaces.

5
00:00:15,510 --> 00:00:20,670
Remember interfaces which we just spoke about and classes together are going to be the primary tool

6
00:00:20,670 --> 00:00:22,110
that we use inside of TypeScript.

7
00:00:22,620 --> 00:00:27,140
Just about everything that you and I are going to do inside this course is going to revolve around classes.

8
00:00:27,630 --> 00:00:32,640
So inside of a typical class or something, a typical typescript application, we're going to use classes

9
00:00:32,640 --> 00:00:36,330
very heavily and in general, we're going to have a collection of different files.

10
00:00:36,570 --> 00:00:40,050
Every different file is going to have one single class to find inside of it.

11
00:00:40,560 --> 00:00:44,580
And we're going to get these different classes to work together through the use of interfaces.

12
00:00:45,330 --> 00:00:49,770
Now, of course, I can tell you all this, but it's not super useful unless we see a good example of

13
00:00:49,770 --> 00:00:49,970
it.

14
00:00:50,370 --> 00:00:51,840
So we're going to take a pause right here.

15
00:00:51,990 --> 00:00:55,440
When we come back, the next section, we're going to start working on our first application.

16
00:00:55,770 --> 00:01:01,320
We're going to do a really big focus on helping you understand how we use classes inside of a basic

17
00:01:01,320 --> 00:01:06,090
application and how we get some code we use with them through the use of interfaces.

18
00:01:06,550 --> 00:01:09,300
So quick pause and we'll start on this application in the next video.

