Is there a simple way to format numbers in Javascript, similar to the formatting methods available in C# (or VB.NET) via ToString("format_provider") or String.Format()?
|
|
|||||||||
|
|
You should probably have a look at the jQuery NUMBERFORMATTER plugin: http://plugins.jquery.com/project/numberformatter And this question: http://stackoverflow.com/questions/726144/javascript-easier-way-to-format-numbers/ |
|||
|
|
|
Generally In jQuery
|
|||||||||||||||||||
|
|
Here's a simple JS function to add commas to an integer number in string format.
You can see it being used in this previous jsFiddle: http://jsfiddle.net/jfriend00/sMnjT/. You can find functions that will handle decimal numbers too with a simple Google search for "javascript add commas". Converting a number to a string can be done many ways. The easiest is just to add it to a string:
Within, the context of your jsFiddle, you'd get commas into the counter by changing this line:
to this:
You can see it working here: http://jsfiddle.net/jfriend00/CbjSX/ |
||||
|
|
Yes, there is definitely a way to format numbers properly in javascript, for example:
With the use of variablename.toFixed . And there is another function http://raovishal.blogspot.com/2012/01/number-format-in-javascript.html |
||||
|
|
|
Firstly, converting an integer into string in JS is really simple:
If you have a number as a string and want it to be turned to an integer, you have to use the
What exactly are you trying to append etc, remains unclear to me from your question. |
|||||||||
|
|
If you don't want to use jQuery, take a look at Numeral.js |
|||
|
|
|
For example:
|
|||
|
|
|
Using JQuery.
|
|||
|
|
|
http://code.google.com/p/javascript-number-formatter/ :
|
|||||
|
|
Here's another version:
|
||||
|
|
