<?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: Object inspector for JavaScript	</title>
	<atom:link href="https://www.timo-ernst.net/blog/2009/12/21/object-inspector-for-javascript/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.timo-ernst.net/blog/2009/12/21/object-inspector-for-javascript/</link>
	<description>Developer • YouTuber • Blogger</description>
	<lastBuildDate>Fri, 14 May 2010 18:15:01 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		By: bernie		</title>
		<link>https://www.timo-ernst.net/blog/2009/12/21/object-inspector-for-javascript/#comment-10646</link>

		<dc:creator><![CDATA[bernie]]></dc:creator>
		<pubDate>Fri, 14 May 2010 18:15:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.timo-ernst.net/?p=1339#comment-10646</guid>

					<description><![CDATA[Thank you,

I&#039;ve written a simpler function:
&lt;code&gt;
&lt;div id=&quot;_mcePaste&quot;&gt;function objInsp(obj) {&lt;/div&gt;
 &lt;div id=&quot;_mcePaste&quot;&gt;var html = ‘&#060;ul&#062;’;&lt;/div&gt;
 &lt;div id=&quot;_mcePaste&quot;&gt;for (var i in obj) {&lt;/div&gt;
  &lt;div id=&quot;_mcePaste&quot;&gt;html += ‘&#060;li&#062;’ + i + ‘ : ‘ + ((‘object’ == typeof obj[i]) ? objInsp(obj[i]) : obj[i]) + ‘&#060;/li&#062;’;&lt;/div&gt;
 &lt;div id=&quot;_mcePaste&quot;&gt;}&lt;/div&gt;
 &lt;div id=&quot;_mcePaste&quot;&gt;html += ‘&#060;/ul&#062;’;&lt;/div&gt;
 &lt;div id=&quot;_mcePaste&quot;&gt;return html;&lt;/div&gt;
&lt;/code&gt;]]></description>
			<content:encoded><![CDATA[<p>Thank you,</p>
<p>I&#8217;ve written a simpler function:<br />
<code></p>
<div id="_mcePaste">function objInsp(obj) {</div>
<div id="_mcePaste">var html = ‘&lt;ul&gt;’;</div>
<div id="_mcePaste">for (var i in obj) {</div>
<div id="_mcePaste">html += ‘&lt;li&gt;’ + i + ‘ : ‘ + ((‘object’ == typeof obj[i]) ? objInsp(obj[i]) : obj[i]) + ‘&lt;/li&gt;’;</div>
<div id="_mcePaste">}</div>
<div id="_mcePaste">html += ‘&lt;/ul&gt;’;</div>
<div id="_mcePaste">return html;</div>
<p></code></p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
