I want to remove the decimal in my price:
Current version: $300.000,00
Change to: COP$300.000
I want to remove the decimal in my price:
Current version: $300.000,00
Change to: COP$300.000
A simple search on the Internet for “javascript remove decimal digits” resulted in 944,000 results.
One suggested method is the Math.trunc() function.
Hi Yisrael,
Thank you for your answer. I’m new to Wix and Coding, can you me the direct way to use that code to remove the decimal?
num.toLocaleString('En-US', { style: 'currency', currency: 'USD', maximumFractionDigits: 0 })