架构
重构
敏捷
交付
微服务
数据
测试
DSL
关于
书籍
常见问题解答
视频
内容索引
棋盘游戏
摄影
见解
职业
雷达
RSS
Mastodon
领英
X (推特)
BGG
如何访问网络版?
function potentialEnergy(mass, height) { return mass * 9.81 * height; }
image/svg+xml
const STANDARD_GRAVITY = 9.81; function potentialEnergy(mass, height) { return mass * STANDARD_GRAVITY * height; }
别名 用符号常量替换魔法数字