fix:回调函数

This commit is contained in:
qianguyihao 2018-07-14 11:18:19 +08:00
parent ebf23ff861
commit 6b45420e38
3 changed files with 14 additions and 0 deletions

View File

@ -209,6 +209,10 @@ return的作用是结束方法。
```javascript
fn(test); //回调test这个函数
function fn(a){
a();
}
function test() {
console.log("我是被回调的函数")
}

View File

@ -259,6 +259,9 @@ git cherry-pick myLog
如果我们要实现并列条件,千万不要使用 `if(50 < num < 70)`,而是要使用`if(num > 50 && num <=70)`。
### 2018-07-02

View File

@ -164,6 +164,13 @@
- [技术的热门度曲线](http://www.ruanyifeng.com/blog/2017/03/gartner-hype-cycle.html)
### 2018-07-03
- [浅谈XXE攻击](http://www.freebuf.com/articles/web/126788.html)
关于XXE攻击这几天微信支付被爆出漏洞使用微信支付的各个业务都在努力修补。