From a22a251c70a355d9143eb90991ae377e86c22bf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=A0=E5=BF=97=E6=96=B0?= <1759998065@qq.com> Date: Tue, 15 Nov 2022 15:24:28 +0000 Subject: [PATCH 1/3] =?UTF-8?q?=E6=96=B0=E5=BB=BA=2011-14=20=E6=AD=A3?= =?UTF-8?q?=E5=88=99=20=E7=AC=AC=E5=8D=81=E5=9B=9B=E6=AC=A1=E4=BD=9C?= =?UTF-8?q?=E4=B8=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../.keep" | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 "05\345\215\240\345\277\227\346\226\260/11-14 \346\255\243\345\210\231 \347\254\254\345\215\201\345\233\233\346\254\241\344\275\234\344\270\232 /.keep" diff --git "a/05\345\215\240\345\277\227\346\226\260/11-14 \346\255\243\345\210\231 \347\254\254\345\215\201\345\233\233\346\254\241\344\275\234\344\270\232 /.keep" "b/05\345\215\240\345\277\227\346\226\260/11-14 \346\255\243\345\210\231 \347\254\254\345\215\201\345\233\233\346\254\241\344\275\234\344\270\232 /.keep" new file mode 100644 index 0000000..e69de29 -- Gitee From 1b6a0ae052dcd012888d5ab9cdb7c741b80da5d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=A0=E5=BF=97=E6=96=B0?= <1759998065@qq.com> Date: Tue, 15 Nov 2022 15:24:43 +0000 Subject: [PATCH 2/3] =?UTF-8?q?05=E5=8D=A0=E5=BF=97=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 占志新 <1759998065@qq.com> --- ...\346\254\241\344\275\234\344\270\232.html" | 25 ++++++++++++ .../\346\255\243\345\210\231.md" | 38 +++++++++++++++++++ 2 files changed, 63 insertions(+) create mode 100644 "05\345\215\240\345\277\227\346\226\260/11-14 \346\255\243\345\210\231 \347\254\254\345\215\201\345\233\233\346\254\241\344\275\234\344\270\232 /11-14 \346\255\243\345\210\231 \347\254\254\345\215\201\345\233\233\346\254\241\344\275\234\344\270\232.html" create mode 100644 "05\345\215\240\345\277\227\346\226\260/11-14 \346\255\243\345\210\231 \347\254\254\345\215\201\345\233\233\346\254\241\344\275\234\344\270\232 /\346\255\243\345\210\231.md" diff --git "a/05\345\215\240\345\277\227\346\226\260/11-14 \346\255\243\345\210\231 \347\254\254\345\215\201\345\233\233\346\254\241\344\275\234\344\270\232 /11-14 \346\255\243\345\210\231 \347\254\254\345\215\201\345\233\233\346\254\241\344\275\234\344\270\232.html" "b/05\345\215\240\345\277\227\346\226\260/11-14 \346\255\243\345\210\231 \347\254\254\345\215\201\345\233\233\346\254\241\344\275\234\344\270\232 /11-14 \346\255\243\345\210\231 \347\254\254\345\215\201\345\233\233\346\254\241\344\275\234\344\270\232.html" new file mode 100644 index 0000000..dde252c --- /dev/null +++ "b/05\345\215\240\345\277\227\346\226\260/11-14 \346\255\243\345\210\231 \347\254\254\345\215\201\345\233\233\346\254\241\344\275\234\344\270\232 /11-14 \346\255\243\345\210\231 \347\254\254\345\215\201\345\233\233\346\254\241\344\275\234\344\270\232.html" @@ -0,0 +1,25 @@ + + + + + + + + Document + + + + + + + \ No newline at end of file diff --git "a/05\345\215\240\345\277\227\346\226\260/11-14 \346\255\243\345\210\231 \347\254\254\345\215\201\345\233\233\346\254\241\344\275\234\344\270\232 /\346\255\243\345\210\231.md" "b/05\345\215\240\345\277\227\346\226\260/11-14 \346\255\243\345\210\231 \347\254\254\345\215\201\345\233\233\346\254\241\344\275\234\344\270\232 /\346\255\243\345\210\231.md" new file mode 100644 index 0000000..88f4e89 --- /dev/null +++ "b/05\345\215\240\345\277\227\346\226\260/11-14 \346\255\243\345\210\231 \347\254\254\345\215\201\345\233\233\346\254\241\344\275\234\344\270\232 /\346\255\243\345\210\231.md" @@ -0,0 +1,38 @@ +### this + +this产生在函数执行时 + +默认绑定:默认指向windows + +隐式绑定:谁调用,指向谁 + +显式绑定:call apply bind + +箭头函数本身没有this,里面的this指向的是父级函数中的this + +# 12、正则 + +创建正则 + + var re = /ab+c/; + var re = new RegExp("ab+c"); + +贪婪模式:能多就多 + +非贪婪模式:在正则后加?,能少就少 + +{m}:匹配m次 + +{m,n}:匹配最少m次,最多n次 + +{m,}:匹配最少m次,最多无限次 + +{1,}:1次或者多次 + + +{0,}:0次或多次 * + +{0,1}:0次或者1次 ? + +^非,在开头表示必须以下一个字符开头 + +$必须以上一个字符结尾 \ No newline at end of file -- Gitee From 205b19533da8c1099336212a9a21d2e54256b319 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=A0=E5=BF=97=E6=96=B0?= <1759998065@qq.com> Date: Thu, 17 Nov 2022 03:47:27 +0000 Subject: [PATCH 3/3] =?UTF-8?q?=E6=96=B0=E5=BB=BA=2011-16=20=E6=AD=A3?= =?UTF-8?q?=E5=88=99=20=E7=AC=AC=E5=8D=81=E4=BA=94=E6=AC=A1=E4=BD=9C?= =?UTF-8?q?=E4=B8=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../.keep" | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 "05\345\215\240\345\277\227\346\226\260/11-16 \346\255\243\345\210\231 \347\254\254\345\215\201\344\272\224\346\254\241\344\275\234\344\270\232/.keep" diff --git "a/05\345\215\240\345\277\227\346\226\260/11-16 \346\255\243\345\210\231 \347\254\254\345\215\201\344\272\224\346\254\241\344\275\234\344\270\232/.keep" "b/05\345\215\240\345\277\227\346\226\260/11-16 \346\255\243\345\210\231 \347\254\254\345\215\201\344\272\224\346\254\241\344\275\234\344\270\232/.keep" new file mode 100644 index 0000000..e69de29 -- Gitee