Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. module.exports = function restaurantBill(bill) {
  2. // 1. Crie uma variável chamada tax (imposto em inglês) e atribua-lhe o resultado
  3. // de multiplique a conta em 10%.
  4. var tax /* Seu código aqui */;
  5.  
  6. // 2. Crie uma variável chamada total e atribua-lhe o resultado da adição de conta
  7. // mais impostos
  8. var total /* Seu código aqui */;
  9.  
  10. // 3. Retorne o valor que cada um deve pagar (total dividido por 5), com o
  11. // símbolo $ antes (por exemplo: $ 11).
  12. return /* Seu código aqui */;
  13. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement