WEBVTT

00:00.710 --> 00:06.830
Okay, so now I'm going to talk about the end result of what all the work we are going to do is going

00:06.830 --> 00:07.520
to be.

00:07.610 --> 00:15.860
So we're going to end up with an array of JavaScript objects that has all of the properties which corresponds

00:15.860 --> 00:17.990
to the headers we have in the table.

00:17.990 --> 00:24.380
And then we have the data, which is basically the TD or the data cell inside the table.

00:24.620 --> 00:31.400
So we're going to end up with something like this in our code in NodeJS, which we can then use to save

00:31.400 --> 00:37.750
in a database or save in a CSV file or do some manipulation with whatever you want to do.

00:37.760 --> 00:39.470
And yeah, that's it.

00:39.500 --> 00:46.460
We're basically converting this HTML data into some data we can use in a more programming wise setting.

00:46.580 --> 00:48.410
So now on to the next section.

00:48.410 --> 00:54.920
We are going to build out our first selector to select the data that we need from the HTML table.

00:54.920 --> 00:57.890
And we're going to do that all inside of Chrome.
