Skip to content

Commit 387d3a0

Browse files
committed
Updated start/lesson8/index.html to remove code
1 parent dd2de0d commit 387d3a0

File tree

1 file changed

+1
-20
lines changed

1 file changed

+1
-20
lines changed

start/lesson8/index.html

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -19,26 +19,7 @@
1919

2020
<body>
2121
<script>
22-
class Point{
23-
constructor(x,y){
24-
this.x = x;
25-
this.y = y;
26-
}
27-
}
28-
29-
const pt = new Point(20, 65);
30-
31-
class Rectangle{
32-
constructor(left, top, width, height){
33-
this.left = left;
34-
this.top = top;
35-
this.width = width;
36-
this.height = height;
37-
}
38-
}
39-
40-
const rect1 = new Rectangle(10, 10, 100, 50);
41-
const rect2 = new Rectangle(50, 20, 200, 80);
22+
4223
</script>
4324
</body>
4425

0 commit comments

Comments
 (0)