1
00:00:00,420 --> 00:00:06,570
This is going to be a relatively simple build where we're building out a click counter and the objective

2
00:00:06,570 --> 00:00:13,440
here is to only use JavaScript for all the styling, for all the element interaction and for everything

3
00:00:13,440 --> 00:00:14,120
for the count.

4
00:00:14,340 --> 00:00:18,300
So no HTML, only JavaScript in this project.

5
00:00:18,510 --> 00:00:19,200
So let's try this.

6
00:00:20,130 --> 00:00:22,390
So we have a button that says, click me.

7
00:00:22,410 --> 00:00:24,960
So what do you do with the button that says Click me, you click it.

8
00:00:25,290 --> 00:00:28,380
So what it's doing is it's counting how many times the button gets clicked.

9
00:00:28,620 --> 00:00:29,270
So that's it.

10
00:00:29,280 --> 00:00:31,140
Not a whole lot to this project.

11
00:00:31,620 --> 00:00:37,890
But again, it is important to practice and work with interaction with JavaScript and build these only

12
00:00:37,890 --> 00:00:45,120
JavaScript projects where we're adding elements to the HTML, all the JavaScript and creating them dynamically.

13
00:00:45,150 --> 00:00:45,980
So try this out.
