Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function total(arrayToSum) {
  2.     if(arrayToSum){
  3.     return arrayToSum.reduce(prev, now => prev + now.totalFee, 0);
  4.     }
  5. return 0;
  6. }
  7.  
  8. // di render
  9. const totalHarga = total(data.akhp) + total(data.prescription);
  10.  
  11. // nanti tinggal pake
  12. currencyFormatter(totalHarga);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement