auto commit

This commit is contained in:
DuYi 2024-08-27 10:14:31 +08:00
parent f2e1f0755e
commit 4ad35c0ea8
51 changed files with 51 additions and 35 deletions

View File

@ -156,3 +156,4 @@ str.last(); // 5 执行到这一句,后台依然会偷偷的干这些事
-*EOF*- -*EOF*-

View File

@ -1367,3 +1367,4 @@ if(a == 1 && a == 2 && a == 3){
-*EOF*- -*EOF*-

View File

@ -421,3 +421,4 @@ const food = "rice";
-*EOF*- -*EOF*-

View File

@ -180,3 +180,4 @@ fn();
-*EOF*- -*EOF*-

View File

@ -197,3 +197,4 @@ test.addEventListener("click", fn2, false);
-*EOF*- -*EOF*-

View File

@ -576,3 +576,4 @@ e.init();
-*EOF*- -*EOF*-

View File

@ -239,3 +239,4 @@ console.log(19571992547450991===19571992547450992); // true
-*EOF*- -*EOF*-

View File

@ -292,3 +292,4 @@ console.log(public);
-*EOF*- -*EOF*-

View File

@ -331,3 +331,4 @@ function throttle(func, wait) {
-*EOF*- -*EOF*-

View File

@ -114,3 +114,4 @@ console.log(add(1)(2)(3).toString())
console.log(add(1, 2, 3)(4).toString()) console.log(add(1, 2, 3)(4).toString())
console.log(add(1)(2)(3,4,5)(6,7).toString()) console.log(add(1)(2)(3,4,5)(6,7).toString())

View File

@ -129,3 +129,4 @@ setTimeout(()=>{
// promise1 // promise1
// timer2 // timer2
// promise2 // promise2

View File

@ -38,3 +38,4 @@ console.log(a);
var x = ''; var x = '';
eval(x) eval(x)

View File

@ -425,3 +425,4 @@ body{
-*EOF*- -*EOF*-

View File

@ -53,3 +53,4 @@

View File

@ -8042,3 +8042,4 @@ console.log(a + 7);
> >
> 因为会自动调用 a 函数的 *toString* 方法。 > 因为会自动调用 a 函数的 *toString* 方法。

View File

@ -1528,3 +1528,4 @@ a.toString = function () {
}; };
console.log(a + 7); console.log(a + 7);
``` ```