架構
重構
敏捷
交付
微服務
資料
測試
DSL
關於
書籍
常見問答
影片
內容索引
桌上遊戲
攝影
見解
職涯
雷達
RSS
Mastodon
LinkedIn
X (Twitter)
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; }
使用函數取代指令 的反函數