diff --git "a/14\351\203\221\345\256\227\345\270\205/\344\275\234\344\270\232/2022.10.25.html" "b/14\351\203\221\345\256\227\345\270\205/\344\275\234\344\270\232/2022.10.25\344\275\234\344\270\232.html"
similarity index 100%
rename from "14\351\203\221\345\256\227\345\270\205/\344\275\234\344\270\232/2022.10.25.html"
rename to "14\351\203\221\345\256\227\345\270\205/\344\275\234\344\270\232/2022.10.25\344\275\234\344\270\232.html"
diff --git "a/14\351\203\221\345\256\227\345\270\205/\344\275\234\344\270\232/2022.10.26\344\275\234\344\270\232.html" "b/14\351\203\221\345\256\227\345\270\205/\344\275\234\344\270\232/2022.10.26\344\275\234\344\270\232.html"
new file mode 100644
index 0000000000000000000000000000000000000000..5bc1843b1c68fc4fb8b180963d7be1d466221afc
--- /dev/null
+++ "b/14\351\203\221\345\256\227\345\270\205/\344\275\234\344\270\232/2022.10.26\344\275\234\344\270\232.html"
@@ -0,0 +1,155 @@
+
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/14\351\203\221\345\256\227\345\270\205/\344\275\234\344\270\232/2022.10.27\344\275\234\344\270\232.html" "b/14\351\203\221\345\256\227\345\270\205/\344\275\234\344\270\232/2022.10.27\344\275\234\344\270\232.html"
new file mode 100644
index 0000000000000000000000000000000000000000..0ea408f52cfc0f93582f35432a1148249c8f2537
--- /dev/null
+++ "b/14\351\203\221\345\256\227\345\270\205/\344\275\234\344\270\232/2022.10.27\344\275\234\344\270\232.html"
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+ Document
+
+
+
+
+
\ No newline at end of file
diff --git "a/14\351\203\221\345\256\227\345\270\205/\347\254\224\350\256\260/\347\254\224\350\256\260zzs.txt" "b/14\351\203\221\345\256\227\345\270\205/\347\254\224\350\256\260/2022.10.24\347\254\224\350\256\260.txt"
similarity index 100%
rename from "14\351\203\221\345\256\227\345\270\205/\347\254\224\350\256\260/\347\254\224\350\256\260zzs.txt"
rename to "14\351\203\221\345\256\227\345\270\205/\347\254\224\350\256\260/2022.10.24\347\254\224\350\256\260.txt"
diff --git "a/14\351\203\221\345\256\227\345\270\205/\347\254\224\350\256\260/2022.10.26\347\254\224\350\256\260.md" "b/14\351\203\221\345\256\227\345\270\205/\347\254\224\350\256\260/2022.10.26\347\254\224\350\256\260.md"
new file mode 100644
index 0000000000000000000000000000000000000000..bf64b5f9b1e87196f46db10ef49635c093ac7874
--- /dev/null
+++ "b/14\351\203\221\345\256\227\345\270\205/\347\254\224\350\256\260/2022.10.26\347\254\224\350\256\260.md"
@@ -0,0 +1,29 @@
+6、对象
+
+6.1 定义对象
+字面量
+
+var obj = {
+ name:value;
+ 'String':value;
+}
+构造函数
+
+function GetName() {
+ this.name = values;
+ this.age = values;
+}
+工厂模式(设计模式)
+
+function GetValues(name,age) {
+ var that = { }
+ that.name = name
+ that.age = age
+ return that
+ }
+生成对象
+
+var obj = new obj();
+
+6.2 增删查
+查:obj.name
\ No newline at end of file
diff --git "a/14\351\203\221\345\256\227\345\270\205/\347\254\224\350\256\260/2022.10.27\347\254\224\350\256\260.txt" "b/14\351\203\221\345\256\227\345\270\205/\347\254\224\350\256\260/2022.10.27\347\254\224\350\256\260.txt"
new file mode 100644
index 0000000000000000000000000000000000000000..bf64b5f9b1e87196f46db10ef49635c093ac7874
--- /dev/null
+++ "b/14\351\203\221\345\256\227\345\270\205/\347\254\224\350\256\260/2022.10.27\347\254\224\350\256\260.txt"
@@ -0,0 +1,29 @@
+6、对象
+
+6.1 定义对象
+字面量
+
+var obj = {
+ name:value;
+ 'String':value;
+}
+构造函数
+
+function GetName() {
+ this.name = values;
+ this.age = values;
+}
+工厂模式(设计模式)
+
+function GetValues(name,age) {
+ var that = { }
+ that.name = name
+ that.age = age
+ return that
+ }
+生成对象
+
+var obj = new obj();
+
+6.2 增删查
+查:obj.name
\ No newline at end of file