1
0
Fork 0
Browse Source

vault backup: 2022-06-27 11:20:51

master
YuJian 2 years ago
parent
commit
b2b5b057bd
  1. 4
      Antd 的深入尝试/Button.md

4
Antd 的深入尝试/Button.md

@ -4,4 +4,6 @@ @@ -4,4 +4,6 @@
const rxTwoCNChar = /^[\u4e00-\u9fa5]{2}$/;
const isTwoCNChar = rxTwoCNChar.test.bind(rxTwoCNChar);
isTwoCNChar("提交")
```
```
在这里 isTwoCNChar 是使用 bind 改变作用域后生成的新函数赋值的,它的作用域为 rxTwoCNChar,在这里 rxTwoCNChar.test.bind 实际上相当于 RegExp.prototype.test.bind,它们的效果实际上是一致的
Loading…
Cancel
Save