diff --git a/docs/es6/var_let_const.md b/docs/es6/var_let_const.md index 66e2a0c6..ed1d7e00 100644 --- a/docs/es6/var_let_const.md +++ b/docs/es6/var_let_const.md @@ -36,7 +36,7 @@ var a = 30 console.log(a) // 30 ``` -在函数中使用使用`var`声明变量时候,该变量是局部的 +在函数中使用`var`声明变量时候,该变量是局部的 ```js var a = 20 @@ -304,4 +304,4 @@ console.log(c) // Uncaught TypeError: Assignment to constant variable ## 参考文献 -- https://es6.ruanyifeng.com/ \ No newline at end of file +- https://es6.ruanyifeng.com/