Browse Source

測試類文件更改

kindring 3 years ago
parent
commit
ec711b956b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      奇思妙想/class.js

+ 2 - 2
奇思妙想/class.js

@@ -3,7 +3,7 @@
  * @Autor: kindring
  * @Date: 2021-09-06 16:18:22
  * @LastEditors: kindring
- * @LastEditTime: 2021-09-06 16:22:29
+ * @LastEditTime: 2021-09-06 17:40:17
  * @LastDescript: 
  */
 class Fn {
@@ -15,7 +15,7 @@ class Fn {
         console.log(`${this.name}:${talk}`);
         this.onSay({ date: new Date(), talk })
     }
-    static onSay() {}
+    onSay() {}
 }
 
 let f = new Fn(1, '张三')