Build a Cash Register Project - Build a Cash Register

Tell us what’s happening:

Hi, I have a technical question, I saved my code and when I reset the lesson the saved code is there, how can I reset the lesson and get rid of my code and go back to basic initial code supplied by you ? Thanks !

Your code so far



Your browser information:

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

Challenge Information:

Build a Cash Register Project - Build a Cash Register

You can manually delete the code in index.html and styles.css.

For script.js, the only code that was given I think was this:

let price = 1.87;
let cid = [
  ['PENNY', 1.01],
  ['NICKEL', 2.05],
  ['DIME', 3.1],
  ['QUARTER', 4.25],
  ['ONE', 90],
  ['FIVE', 55],
  ['TEN', 20],
  ['TWENTY', 60],
  ['ONE HUNDRED', 100]
];