<?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: How to display an big array in the output window so you can read it	</title>
	<atom:link href="https://jessewarden.com/2003/08/how-to-display-an-big-array-in-the-output-window-so-you-can-read-it.html/feed" rel="self" type="application/rss+xml" />
	<link>https://jessewarden.com/2003/08/how-to-display-an-big-array-in-the-output-window-so-you-can-read-it.html</link>
	<description>Software &#124; Fitness &#124; Gaming</description>
	<lastBuildDate>Fri, 15 Aug 2003 13:06:03 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: matt		</title>
		<link>https://jessewarden.com/2003/08/how-to-display-an-big-array-in-the-output-window-so-you-can-read-it.html/comment-page-1#comment-748</link>

		<dc:creator><![CDATA[matt]]></dc:creator>
		<pubDate>Fri, 15 Aug 2003 13:06:03 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=240#comment-748</guid>

					<description><![CDATA[oooops i didnt put my name on the post - how rude....
]]></description>
			<content:encoded><![CDATA[<p>oooops i didnt put my name on the post &#8211; how rude&#8230;.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Anonymous		</title>
		<link>https://jessewarden.com/2003/08/how-to-display-an-big-array-in-the-output-window-so-you-can-read-it.html/comment-page-1#comment-747</link>

		<dc:creator><![CDATA[Anonymous]]></dc:creator>
		<pubDate>Fri, 15 Aug 2003 13:05:28 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=240#comment-747</guid>

					<description><![CDATA[I made these extensions recently to help me read an array easier...

String.prototype.print = function ()
{
	return &#039;&quot;&#039; + this + &#039;&quot;&#039;;
};
ASSetPropFlags(String.prototype, &quot;print&quot;, 7);

Object.prototype.print = function ()
{
	var str = &quot;{&quot;;
	
	for (var i in this)
		str += i + &quot;:&quot; + (this[i] == null ? &quot;null&quot; : this[i].print()) + &quot;, &quot;;
		
	return str.substr(0, str.length - 2) + &quot;}&quot;;		
};
ASSetPropFlags(Object.prototype, &quot;print&quot;, 7);

Number.prototype.print = function ()
{
	return this.toString();
};
ASSetPropFlags(Number.prototype, &quot;print&quot;, 7);

Boolean.prototype.print = function ()
{
	return this.toString();
};
ASSetPropFlags(Boolean.prototype, &quot;print&quot;, 7);

Array.prototype.print = function ()
{
	var str = &quot;[&quot;;
	var l = this.length;
	
	for (var i = 0; i]]></description>
			<content:encoded><![CDATA[<p>I made these extensions recently to help me read an array easier&#8230;</p>
<p>String.prototype.print = function ()<br />
{<br />
	return &#8216;&#8221;&#8216; + this + &#8216;&#8221;&#8216;;<br />
};<br />
ASSetPropFlags(String.prototype, &#8220;print&#8221;, 7);</p>
<p>Object.prototype.print = function ()<br />
{<br />
	var str = &#8220;{&#8220;;</p>
<p>	for (var i in this)<br />
		str += i + &#8220;:&#8221; + (this[i] == null ? &#8220;null&#8221; : this[i].print()) + &#8220;, &#8220;;</p>
<p>	return str.substr(0, str.length &#8211; 2) + &#8220;}&#8221;;<br />
};<br />
ASSetPropFlags(Object.prototype, &#8220;print&#8221;, 7);</p>
<p>Number.prototype.print = function ()<br />
{<br />
	return this.toString();<br />
};<br />
ASSetPropFlags(Number.prototype, &#8220;print&#8221;, 7);</p>
<p>Boolean.prototype.print = function ()<br />
{<br />
	return this.toString();<br />
};<br />
ASSetPropFlags(Boolean.prototype, &#8220;print&#8221;, 7);</p>
<p>Array.prototype.print = function ()<br />
{<br />
	var str = &#8220;[&#8220;;<br />
	var l = this.length;</p>
<p>	for (var i = 0; i</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: cedric		</title>
		<link>https://jessewarden.com/2003/08/how-to-display-an-big-array-in-the-output-window-so-you-can-read-it.html/comment-page-1#comment-746</link>

		<dc:creator><![CDATA[cedric]]></dc:creator>
		<pubDate>Fri, 15 Aug 2003 12:09:49 +0000</pubDate>
		<guid isPermaLink="false">http://jessewarden.com/?p=240#comment-746</guid>

					<description><![CDATA[thanks for that small but useful tip! this always was a pain!]]></description>
			<content:encoded><![CDATA[<p>thanks for that small but useful tip! this always was a pain!</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
