add: VS Code 插件

This commit is contained in:
qianguyihao
2020-06-18 23:40:12 +08:00
parent 8761b57743
commit fd319bdd19
3 changed files with 250 additions and 146 deletions

View File

@@ -22,7 +22,7 @@
### 定义定时器
**方式一**匿名函数
**方式一**匿名函数
每间隔一秒 数字 加1
@@ -41,6 +41,7 @@
```javascript
setInterval(fn,1000);
function fn() {
num ++;
console.log(num);
}