We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
functionsolve(meal_cost,tip_percent,tax_percent){// Write your code hereconstRESULT=Math.round(meal_cost+((meal_cost*tip_percent)/100)+((meal_cost*tax_percent)/100));console.log(RESULT);}
Day 2: Operators
You are viewing a single comment's thread. Return to all comments →
JavaScript