アーキテクチャ
リファクタリング
アジャイル
デリバリー
マイクロサービス
データ
テスト
DSL
自己紹介
書籍
FAQ
ビデオ
コンテンツのインデックス
ボードゲーム
写真
洞察
キャリア
レーダー
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; }
逆 Replace Function with Command