JavaScript Algorithms and Data Structures Projects - Cash Register

I have read the instructions many times but i still do not understand what i have to do. Please can someone explain step by step what this challenge is all about :pray:

Your code so far

function checkCashRegister(price, cash, cid) {
  let change;
  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/110.0.0.0 Safari/537.36 Edg/110.0.1587.63

Challenge: JavaScript Algorithms and Data Structures Projects - Cash Register

Link to the challenge:

Rather than re-explaining the instructions, perhaps you could point out what part of the instructions you are having a problem interpreting?

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