常量
最后更新于:2022-04-01 22:24:19
## 常量
常量的形式如: `NAMES_LIKE_THIS`, 即使用大写字符, 并用下划线分隔.
你也可用 `@const` 标记来指明它是一个常量.
但请永远不要使用 `const` 关键词.
Decision:
对于基本类型的常量, 只需转换命名.
```
/**
* The number of seconds in a minute.
* @type {number}
*/
goog.example.SECONDS_IN_A_MINUTE = 60;
```
对于非基本类型, 使用 `@const` 标记.
```
/**
* The number of seconds in each of the given units.
* @type {Object.}
* @const
*/
goog.example.SECONDS_TABLE = {
minute: 60,
hour: 60 * 60,
day: 60 * 60 * 24
}
```
这标记告诉编译器它是常量.
至于关键词 `const`, 因为 IE 不能识别, 所以不要使用.
';