Posts by Marcelo Venâncio • 11 points
1 post
-
1
votes3
answers453
viewsA: How to perform currency multiplication in the Brazilian format in js?
You can also create a function that removes the dots and commas and work with the value in cents. var currency = "100.100,10"; function onlyNumber(str) { if (str){ if (typeof str === "number") { str…
javascriptanswered Marcelo Venâncio 11