From ffa0100aa2bf8927594228b66af0a62a24838f7c Mon Sep 17 00:00:00 2001 From: erniu <25457788@qq.com> Date: Mon, 9 May 2016 12:17:07 +0800 Subject: [PATCH] =?UTF-8?q?const=20=E5=85=B3=E9=94=AE=E5=AD=97=E5=8F=AA?= =?UTF-8?q?=E8=83=BD=E5=A3=B0=E6=98=8E=E5=B8=B8=E9=87=8F=EF=BC=8C=E8=BF=99?= =?UTF-8?q?=E4=B8=AA=E5=9C=A8=E5=85=B6=E4=BB=96=E8=AF=AD=E8=A8=80=E4=B8=AD?= =?UTF-8?q?=E4=B9=9F=E7=B1=BB=E4=BC=BC=EF=BC=8C=E5=9C=A8MDN=E4=B8=8A?= =?UTF-8?q?=E7=9A=84=E5=AE=9A=E4=B9=89=E4=B8=AD=E4=B9=9F=E6=98=AF=E8=BF=99?= =?UTF-8?q?=E6=A0=B7=E7=9A=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/let.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/let.md b/docs/let.md index e1d4e7c..6ceb940 100644 --- a/docs/let.md +++ b/docs/let.md @@ -349,7 +349,7 @@ f() // ReferenceError: f is not defined ## const命令 -const也用来声明变量,但是声明的是常量。一旦声明,常量的值就不能改变。 +const 声明一个只读的常量。一旦声明,常量的值就不能改变。 ```javascript 'use strict';