<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Real Programming with JavaScript - An array of functionality</title>
	<link>http://blog.thingoid.com/2004/07/real-programming-with-javascript-an-array-of-functionality/</link>
	<description></description>
	<pubDate>Thu, 28 Aug 2008 03:55:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: Trevor</title>
		<link>http://blog.thingoid.com/2004/07/real-programming-with-javascript-an-array-of-functionality/#comment-88</link>
		<dc:creator>Trevor</dc:creator>
		<pubDate>Tue, 04 Apr 2006 20:29:11 +0000</pubDate>
		<guid>http://blog.thingoid.com/2004/07/real-programming-with-javascript-an-array-of-functionality/#comment-88</guid>
		<description>&lt;p&gt;No problem at all. You create an empty array when you execute the line:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;var myArray = new Array();
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;&lt;strong&gt;At this point, the array myArray() is empty, with no preset values, and a length of 0.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Values can then be added to the empty array either one at a time:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;myArray[0] = "Tom";
myArray[1] = "Dick";
myArray[2] = "Array";
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;or all together:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;myArray = ["Tom", "Dick", "Array"];
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;I hope that helps.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>No problem at all. You create an empty array when you execute the line:</p>
<pre><code>var myArray = new Array();
</code></pre>
<p><strong>At this point, the array myArray() is empty, with no preset values, and a length of 0.</strong></p>
<p>Values can then be added to the empty array either one at a time:</p>
<pre><code>myArray[0] = "Tom";
myArray[1] = "Dick";
myArray[2] = "Array";
</code></pre>
<p>or all together:</p>
<pre><code>myArray = ["Tom", "Dick", "Array"];
</code></pre>
<p>I hope that helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: terryjones</title>
		<link>http://blog.thingoid.com/2004/07/real-programming-with-javascript-an-array-of-functionality/#comment-87</link>
		<dc:creator>terryjones</dc:creator>
		<pubDate>Tue, 04 Apr 2006 18:52:08 +0000</pubDate>
		<guid>http://blog.thingoid.com/2004/07/real-programming-with-javascript-an-array-of-functionality/#comment-87</guid>
		<description>&lt;p&gt;please add an example of an array that does not have preset values please&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>please add an example of an array that does not have preset values please</p>
]]></content:encoded>
	</item>
</channel>
</rss>
