<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Code Stuff &#187; Javascript</title>
	<atom:link href="http://www.codestuff.com/category/javascript/feed" rel="self" type="application/rss+xml" />
	<link>http://www.codestuff.com</link>
	<description>Web and Mobile Development, PHP, WordPress, HTML, Javascript</description>
	<lastBuildDate>Fri, 02 Jul 2010 04:27:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to check if a Javascript variable is an array</title>
		<link>http://www.codestuff.com/2008/08/31/22/how-to-check-if-a-javascript-variable-is-an-array.html</link>
		<comments>http://www.codestuff.com/2008/08/31/22/how-to-check-if-a-javascript-variable-is-an-array.html#comments</comments>
		<pubDate>Sun, 31 Aug 2008 08:39:13 +0000</pubDate>
		<dc:creator>kihbord</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[type checking]]></category>

		<guid isPermaLink="false">http://codestuff.com/2008/08/31/22/how-to-check-if-a-javascript-variable-is-an-array.html</guid>
		<description><![CDATA[Looking for the simplest way to check if a Javascript variable / object is an array? Here&#8217;s a simple way on how to check for an Array variable in javascript:
function isArray(variable) {
if (variable.constructor == Array)
return true;
else
return false;
}
or better yet, just do this:
function isArray(variable) {
return (variable.constructor == Array);
}
]]></description>
		<wfw:commentRss>http://www.codestuff.com/2008/08/31/22/how-to-check-if-a-javascript-variable-is-an-array.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
