架構
重構
敏捷
交付
微服務
資料
測試
DSL
關於
書籍
常見問答集
影片
內容索引
桌上遊戲
攝影
見解
職涯
雷達
RSS
Mastodon
LinkedIn
X (Twitter)
BGG
我要如何存取網站版本?
class Product { applyDiscount(arg) {this._price.amount -= arg;}
image/svg+xml
class Product { applyDiscount(arg) { this._price = new Money(this._price.amount - arg, this._price.currency); }
將值修改為參考 的反例