Chapter 05 Slides
Chapter 05 Slides
Chapter 05 Slides
salesTax = parseFloat(salesTax.toFixed(2));
// result is 7.50 as a number
salestax = parseFloat(salesTax.toFixed(2));
// salestax is global
return salesTax;
// salesTax isn't rounded but salestax is
};
The solution to this type of problem is to always use strict mode.