first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
// class Test {
// test1(name) {
// this.name = name
// this.name += " 哈哈哈1 ";
// return this;
// }
//
// test2() {
// this.name += " 哈哈哈2 ";
// return this;
// }
//
// test3() {
// this.name += " 哈哈哈3 "
// return this.name;
// }
// }
//
// var a = new Test();
// // var b = a.test1("测试")
// // var c = a.test2(b)
// // var d = a.test3(c)
//
// var d = a.test1("测试").test2().test3();
// console.log(d)