Skip to content

Commit 9ee92c7

Browse files
committed
first commit
0 parents  commit 9ee92c7

File tree

7 files changed

+11106
-0
lines changed

7 files changed

+11106
-0
lines changed

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# js面试基础
2+
这里总结js基础。通过手写demo、徒手造轮子来巩固基础。
3+
现在包含下面的内容
4+
-
5+
- class语法糖
6+
- 原型和原型链
7+
- 对象的深拷贝

class.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>class</title>
7+
</head>
8+
<body>
9+
<h3>class-demo</h3>
10+
<p>class, 原型, 原型继承</p>
11+
<script src="js/class.js"></script>
12+
</body>
13+
</html>

deep-clone.html

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Document</title>
7+
<script src="js/deep-clone.js"></script>
8+
<style>
9+
form >*[disabled]{
10+
background-color: red;
11+
}
12+
</style>
13+
</head>
14+
<body>
15+
<p>deep-clone</p>
16+
</body>
17+
</html>

0 commit comments

Comments
 (0)