[My students and I are trying to round the answer with tax to display the dollar and cents .]
Link to the project or level: [(Code.org)]](Code.org)] What I expect to happen: [display should round to the nearest 100th then add that to the total] What actually happens: [through various iterations we have gotten the tax to display but it won’t add back to the original amount] What I’ve tried: [function totalWithTax(amount){
var total = (amount*0.07/100)+total;
return total;
}]