You are viewing a single comment's thread. Return to all comments →
JavaScript CODE
let tip = tip_percent * meal_cost / 100; let tax = tax_percent * meal_cost / 100; console.log(Math.round(tip + tax + meal_cost));
Seems like cookies are disabled on this browser, please enable them to open this website
Day 2: Operators
You are viewing a single comment's thread. Return to all comments →