<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: JavaScript Number Format Function</title>
	<atom:link href="http://justtalkaboutweb.com/2008/02/23/javascript-number-format/feed/" rel="self" type="application/rss+xml" />
	<link>http://justtalkaboutweb.com/2008/02/23/javascript-number-format/</link>
	<description>Techniques Behind Modern Web</description>
	<lastBuildDate>Wed, 11 Jan 2012 09:34:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Imrul</title>
		<link>http://justtalkaboutweb.com/2008/02/23/javascript-number-format/comment-page-1/#comment-2216</link>
		<dc:creator>Imrul</dc:creator>
		<pubDate>Thu, 14 Jul 2011 03:57:55 +0000</pubDate>
		<guid isPermaLink="false">http://justtalkaboutweb.com/2008/02/23/javascript-number-format/#comment-2216</guid>
		<description>Thanks Jimmy, 

It&#039;s a nice function. 
But I found a bug there, 
new Number(&#039;-22.06&#039;).format(&#039;0,000.0&#039;);
This line returns 2 different values in IE and other browser.
in IE : -22.0
in other browser : -22.1

I think, you need check this ASAP.</description>
		<content:encoded><![CDATA[<p>Thanks Jimmy, </p>
<p>It&#8217;s a nice function.<br />
But I found a bug there,<br />
new Number(&#8216;-22.06&#8242;).format(&#8217;0,000.0&#8242;);<br />
This line returns 2 different values in IE and other browser.<br />
in IE : -22.0<br />
in other browser : -22.1</p>
<p>I think, you need check this ASAP.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: name</title>
		<link>http://justtalkaboutweb.com/2008/02/23/javascript-number-format/comment-page-1/#comment-1325</link>
		<dc:creator>name</dc:creator>
		<pubDate>Thu, 28 Aug 2008 04:51:06 +0000</pubDate>
		<guid isPermaLink="false">http://justtalkaboutweb.com/2008/02/23/javascript-number-format/#comment-1325</guid>
		<description>Hi!,</description>
		<content:encoded><![CDATA[<p>Hi!,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: name</title>
		<link>http://justtalkaboutweb.com/2008/02/23/javascript-number-format/comment-page-1/#comment-1324</link>
		<dc:creator>name</dc:creator>
		<pubDate>Thu, 28 Aug 2008 04:50:24 +0000</pubDate>
		<guid isPermaLink="false">http://justtalkaboutweb.com/2008/02/23/javascript-number-format/#comment-1324</guid>
		<description>Good day!,</description>
		<content:encoded><![CDATA[<p>Good day!,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: name</title>
		<link>http://justtalkaboutweb.com/2008/02/23/javascript-number-format/comment-page-1/#comment-1323</link>
		<dc:creator>name</dc:creator>
		<pubDate>Thu, 28 Aug 2008 00:57:11 +0000</pubDate>
		<guid isPermaLink="false">http://justtalkaboutweb.com/2008/02/23/javascript-number-format/#comment-1323</guid>
		<description>Hello!,</description>
		<content:encoded><![CDATA[<p>Hello!,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jaganathan</title>
		<link>http://justtalkaboutweb.com/2008/02/23/javascript-number-format/comment-page-1/#comment-576</link>
		<dc:creator>Jaganathan</dc:creator>
		<pubDate>Wed, 25 Jun 2008 09:09:28 +0000</pubDate>
		<guid isPermaLink="false">http://justtalkaboutweb.com/2008/02/23/javascript-number-format/#comment-576</guid>
		<description>function formatWithComma(number) {
    var formattedNumberString = (number%1000).toString();
    var x = parseInt(number/1000);
    while(x &gt; 0) {
        formattedNumberString = x%1000 + &#039;,&#039; + formattedNumberString;
        x = parseInt(x/1000);
    }    
    return formattedNumberString;
}</description>
		<content:encoded><![CDATA[<p>function formatWithComma(number) {<br />
    var formattedNumberString = (number%1000).toString();<br />
    var x = parseInt(number/1000);<br />
    while(x &gt; 0) {<br />
        formattedNumberString = x%1000 + &#8216;,&#8217; + formattedNumberString;<br />
        x = parseInt(x/1000);<br />
    }<br />
    return formattedNumberString;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeroen Brattinga</title>
		<link>http://justtalkaboutweb.com/2008/02/23/javascript-number-format/comment-page-1/#comment-401</link>
		<dc:creator>Jeroen Brattinga</dc:creator>
		<pubDate>Mon, 07 Apr 2008 09:37:31 +0000</pubDate>
		<guid isPermaLink="false">http://justtalkaboutweb.com/2008/02/23/javascript-number-format/#comment-401</guid>
		<description>Nice! But you are  aware that some countries (e.g. Netherlands) use the comma and period exactly opposite (e.g. 1.234,56 instead of 1,234.45)? Still, I can easily modify that for my needs, so thanks!</description>
		<content:encoded><![CDATA[<p>Nice! But you are  aware that some countries (e.g. Netherlands) use the comma and period exactly opposite (e.g. 1.234,56 instead of 1,234.45)? Still, I can easily modify that for my needs, so thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: roScripts &#45; Webmaster resources and websites</title>
		<link>http://justtalkaboutweb.com/2008/02/23/javascript-number-format/comment-page-1/#comment-191</link>
		<dc:creator>roScripts &#45; Webmaster resources and websites</dc:creator>
		<pubDate>Mon, 25 Feb 2008 09:14:45 +0000</pubDate>
		<guid isPermaLink="false">http://justtalkaboutweb.com/2008/02/23/javascript-number-format/#comment-191</guid>
		<description>&lt;strong&gt;JavaScript Number Format Function by Matt Snider &#124; Just Talk About Web...&lt;/strong&gt;

JavaScript Number Format Function by Matt Snider &#124; Just Talk About Web...</description>
		<content:encoded><![CDATA[<p><strong>JavaScript Number Format Function by Matt Snider | Just Talk About Web&#8230;</strong></p>
<p>JavaScript Number Format Function by Matt Snider | Just Talk About Web&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

