架构
重构
敏捷
交付
微服务
数据
测试
DSL
关于
书籍
常见问题解答
视频
内容索引
棋盘游戏
摄影
见解
职业
雷达
RSS
Mastodon
LinkedIn
X (Twitter)
BGG
如何访问网络版?
let temp = 2 * (height + width); console.log(temp); temp = height * width; console.log(temp);
image/svg+xml
const perimeter = 2 * (height + width); console.log(perimeter); const area = height * width; console.log(area);
别名 移除参数赋值,拆分临时变量