Last active
October 17, 2018 13:41
-
-
Save daliborgogic/b1562e3eb11024ce7c25d5f7393700a7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const ukupno = (cena = 0, kolicina = 1, pdv = 20) => { | |
const format = (cena * kolicina / 100) | |
const saPDV = format + (pdv / 100 * format) | |
return saPDV.toLocaleString('sr-RS', { | |
minimumFractionDigits: 2, | |
maximumFractionDigits: 2 | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment