架构
重构
敏捷
交付
微服务
数据
测试
DSL
关于
书籍
常见问题解答
视频
内容索引
棋盘游戏
摄影
见解
职业
雷达
RSS
Mastodon
领英
X (推特)
BGG
如何访问网络版?
class ChargeCalculator { constructor (customer, usage){ this._customer = customer; this._usage = usage; } execute() { return this._customer.rate * this._usage; } }
image/svg+xml
function charge(customer, usage) { return customer.rate * usage; }
相反的 用函数替换命令