checkCashRegister Challenge Help

Tell us what’s happening:
Somebody found some solution to this?

**Your code so far**

function checkCashRegister(price, cash, cid) {
var change = cash - price;

// Here is your change, ma'am.
return change;
}


checkCashRegister(19.5, 20, [["PENNY", 1.01], ["NICKEL", 2.05], ["DIME", 3.1], ["QUARTER", 4.25], ["ONE", 90], ["FIVE", 55], ["TEN", 20], ["TWENTY", 60], ["ONE HUNDRED", 100]]);
**Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36

Challenge: Cash Register

Link to the challenge:

To answer your question, yes, many, many people have found solutions to this.

Don’t get me wrong - this is a tough one. A lot of people get tripped up on this one. But that’s all part of the learning process.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.