JavaScript : Rounding number to decimal formats to display currency
Was looking for ways to round up float numbers to 2 decimal points and also to display currency with Javascript. Below is just a code fragment in JavaScript on how to properly format integer to display currency or money and for rounding up to 2 decimal points.
var money = 12.3456789;
var roundedMoney = money.toFixed(2); // round to 2 decimal points
alert("Before : $" + money)
alert("After : $" + roundedMoney)
Play at : http://codepen.io/anon/pen/bdzJVY
Happy coding!
See also : Javascript : Generate random key with specific length
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+8.1k Golang : Sort words with first uppercase letter
+12.1k Golang : Decompress zlib file example
+35.4k Golang : Strip slashes from string example
+15.4k Golang : How to get Unix file descriptor for console and file
+22.9k Golang : Set and Get HTTP request headers example
+5.1k Golang : Calculate a pip value and distance to target profit example
+7.9k Golang : Scan files for certain pattern and rename part of the files
+11.3k Golang : How to determine a prime number?
+12.6k Golang : HTTP response JSON encoded data
+5.3k Python : Create Whois client or function example
+6.1k Golang : Compound interest over time example