Advertisement
Guest User

Untitled

a guest
Oct 9th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. let total = (price) => {
  2. let tax = 0.08;
  3. return price + price * tax;
  4. }
  5.  
  6. console.log(total(2000));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement