<?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>Kommentare zu: Assoziative Arrays mit Javascript</title>
	<atom:link href="http://www.mm-newmedia.de/blog/2010/02/assoziative-arrays-mit-javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mm-newmedia.de/blog/2010/02/assoziative-arrays-mit-javascript/</link>
	<description>Neuigkeiten, Tipps und Smalltalk rund um MM Newmedia</description>
	<lastBuildDate>Sat, 14 Jan 2012 11:25:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Von: piwi</title>
		<link>http://www.mm-newmedia.de/blog/2010/02/assoziative-arrays-mit-javascript/comment-page-1/#comment-332</link>
		<dc:creator>piwi</dc:creator>
		<pubDate>Sun, 20 Mar 2011 03:02:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.mm-newmedia.de/blog/?p=125#comment-332</guid>
		<description>also ich versteh nur bahnhoff.
es ist schon bleed wenn man bleed is. ;)</description>
		<content:encoded><![CDATA[<p>also ich versteh nur bahnhoff.<br />
es ist schon bleed wenn man bleed is. <img src='http://www.mm-newmedia.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Sascha Schoppengerd</title>
		<link>http://www.mm-newmedia.de/blog/2010/02/assoziative-arrays-mit-javascript/comment-page-1/#comment-150</link>
		<dc:creator>Sascha Schoppengerd</dc:creator>
		<pubDate>Mon, 22 Feb 2010 15:04:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.mm-newmedia.de/blog/?p=125#comment-150</guid>
		<description>Wenn man bereits jQuery in sein Projekt eingebunden hat, dann kann man auch auf &lt;code&gt;$.each()&lt;/code&gt; zurückgreifen.</description>
		<content:encoded><![CDATA[<p>Wenn man bereits jQuery in sein Projekt eingebunden hat, dann kann man auch auf <code>$.each()</code> zurückgreifen.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: admin</title>
		<link>http://www.mm-newmedia.de/blog/2010/02/assoziative-arrays-mit-javascript/comment-page-1/#comment-149</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 22 Feb 2010 13:22:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.mm-newmedia.de/blog/?p=125#comment-149</guid>
		<description>Hey Dimitar,

thanks a lot for your response. In this particular case I had to use for ... in because the object was an ajax response in json format. As a result of json decoding in prototype you will always recieve an object.

But your advice is really usefull. Thanks for that. I &#039;ll extend this article as soon as possible.</description>
		<content:encoded><![CDATA[<p>Hey Dimitar,</p>
<p>thanks a lot for your response. In this particular case I had to use for &#8230; in because the object was an ajax response in json format. As a result of json decoding in prototype you will always recieve an object.</p>
<p>But your advice is really usefull. Thanks for that. I &#8216;ll extend this article as soon as possible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Dimitar Christoff</title>
		<link>http://www.mm-newmedia.de/blog/2010/02/assoziative-arrays-mit-javascript/comment-page-1/#comment-148</link>
		<dc:creator>Dimitar Christoff</dc:creator>
		<pubDate>Mon, 22 Feb 2010 13:07:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.mm-newmedia.de/blog/?p=125#comment-148</guid>
		<description>although arrays in js are just objects with array-like properties, this is not using the array constructor. it won&#039;t be iterable in the normal sense as it lacks length property and you can&#039;t loop it using a normal &quot;for/while&quot; loops. you really ought to go about this differently, eg, var arr = []; arr[&#039;sender&#039;] = &#039;me&#039;; etc. - then you can use for ... in to obtain the array keys if you have to (keep in mind that array prototyping spills into such loops and you need hasOwnProperty() before you accept the key). if you don&#039;t care about the keys, then use a normal loop instead, its MUCH faster. also, using &quot;for ... in&quot; in javascript does NOT guarantee the order on which the items will return.</description>
		<content:encoded><![CDATA[<p>although arrays in js are just objects with array-like properties, this is not using the array constructor. it won&#8217;t be iterable in the normal sense as it lacks length property and you can&#8217;t loop it using a normal &#8220;for/while&#8221; loops. you really ought to go about this differently, eg, var arr = []; arr['sender'] = &#8216;me&#8217;; etc. &#8211; then you can use for &#8230; in to obtain the array keys if you have to (keep in mind that array prototyping spills into such loops and you need hasOwnProperty() before you accept the key). if you don&#8217;t care about the keys, then use a normal loop instead, its MUCH faster. also, using &#8220;for &#8230; in&#8221; in javascript does NOT guarantee the order on which the items will return.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

