私は、レジを構築している codecademy.com チュートリアルに取り組んでいます。レジの最後の取引を無効にするために必要なツールを作成することになっています。したがって、私は追加しました
- lastTransactionAmount というプロパティ
- 最後のトランザクション金額を設定する関数「add」への追加のコード行
- 合計から最後のトランザクションを差し引く関数 voidLastTransaction 金額
- 次に、一番下の void last transaction 関数をテストしました (これにより、4 つのチョコレートが無効になると予想されます)。
- それから私は3つのチョコレートを追加しようとしました
コードを実行すると、
請求額は NaN です
誰かが私が間違っていることを説明できますか?
var cashRegister = {
total:0,
//Dont forget to add your property
lastTransactionAmount: 0, //this is a property I added
add: function(itemCost) {
this.total += itemCost;
this.lastTransactionAmount = this.itemCost; //I added this to save
},
scan: function(item,quantity) {
switch (item) {
case "eggs": this.add(0.98 * quantity); break;
case "milk": this.add(1.23 * quantity); break;
case "magazine": this.add(4.99 * quantity); break;
case "chocolate": this.add(0.45 * quantity); break;
}
return true;
},
//Add the voidLastTransaction Method here // I made this function to void l
voidLastTransaction: function() {
this.total = this.total - this.lastTransactionAmount;
}
};
cashRegister.scan('eggs',1);
cashRegister.scan('milk',1);
cashRegister.scan('magazine',1);
cashRegister.scan('chocolate',4);
//Void the last transaction and then add 3 instead
cashRegister.voidLastTransaction(); //I'm voiding last transaction
cashRegister.scan('chocolate', 3); //trying to add 3 (instead of 4)chocolate
//Show the total bill
console.log('Your bill is '+cashRegister.total);