本文档基于 CC协议(Creative Commons Share-Alike License)发布,是developer.mozilla.com, www.mozref.comwww.aptana.com共同劳动的成果。

const

Declares a read-only constant.

Syntax

const constantName;

Example

const pi = 3.14;

Remarks

Constants follow the same rules as variables.