Build a Shopping Cart - Step 46

Tell us what’s happening:

Stuck at step 46, even AI couldnt pass it. Need help

Your code so far

<!-- file: index.html -->

/* file: styles.css */

/* file: script.js */
// User Editable Region

  calculateTaxes(amount) {
    return (this.taxRate / 100 * amount).toFixed(2);
  }

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36

Challenge Information:

Build a Shopping Cart - Step 46

Please reset this step and try again. You have changed the starting code in areas you were not asked to make changes.

The instruction is to wrap the existing calculation in parentheses, then apply the toFixed() method.

Happy coding!