docs: APM 监控部分

This commit is contained in:
杭城小刘
2020-04-06 22:35:27 +08:00
parent fb73c0acf4
commit 32d90b27fc
34 changed files with 2702 additions and 126 deletions

View File

@@ -218,8 +218,8 @@ Chrome开发者工具和Firebug都提供了书签功能用于显示你在元
```
var arr = [{ num: 0 }];
setInterval(function(){
console.log(arr);
arr[0].num += 1;
console.log(arr);
arr[0].num += 1;
}, 1000);
```