<?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: jQuery.makeArray()</title>
	<atom:link href="http://api.jquery.com/jQuery.makeArray/feed/" rel="self" type="application/rss+xml" />
	<link>http://api.jquery.com/jQuery.makeArray/</link>
	<description>jQuery API Reference</description>
	<lastBuildDate>Fri, 19 Aug 2011 09:06:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Maury M. Marques</title>
		<link>http://api.jquery.com/jQuery.makeArray/comment-page-1/#comment-8300</link>
		<dc:creator>Maury M. Marques</dc:creator>
		<pubDate>Thu, 13 Jan 2011 01:27:46 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=208#comment-8300</guid>
		<description>This works.&lt;br&gt;$.unique([&quot;a&quot;, &quot;b&quot;, &quot;c&quot;, &quot;d&quot;, &quot;a&quot;]);&lt;br&gt;&lt;br&gt;I do not know why, but this does not work.&lt;br&gt;$.unique([&quot;a&quot;, &quot;b&quot;, &quot;c&quot;, &quot;d&quot;, &quot;a&quot;, &quot;b&quot;]);</description>
		<content:encoded><![CDATA[<p>This works.<br />$.unique(["a", "b", "c", "d", "a"]);</p>
<p>I do not know why, but this does not work.<br />$.unique(["a", "b", "c", "d", "a", "b"]);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sanshi Ustc</title>
		<link>http://api.jquery.com/jQuery.makeArray/comment-page-1/#comment-7990</link>
		<dc:creator>Sanshi Ustc</dc:creator>
		<pubDate>Tue, 12 Oct 2010 22:45:40 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=208#comment-7990</guid>
		<description>That&#039;s not true, you can use the $.makeArray to transform arguments inside funtion:&lt;br&gt;function arrayFromArgs() {&lt;br&gt;    return $.makeArray(arguments);&lt;br&gt;}&lt;br&gt;&lt;br&gt;arrayFromArgs(&#039;3&#039;, &#039;2&#039;, &#039;4&#039;);</description>
		<content:encoded><![CDATA[<p>That&#39;s not true, you can use the $.makeArray to transform arguments inside funtion:<br />function arrayFromArgs() {<br />    return $.makeArray(arguments);<br />}</p>
<p>arrayFromArgs(&#39;3&#39;, &#39;2&#39;, &#39;4&#39;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sanshi Ustc</title>
		<link>http://api.jquery.com/jQuery.makeArray/comment-page-1/#comment-6304</link>
		<dc:creator>Sanshi Ustc</dc:creator>
		<pubDate>Tue, 12 Oct 2010 14:45:40 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=208#comment-6304</guid>
		<description>That&#039;s not true, you can use the $.makeArray to transform arguments inside funtion:&lt;br&gt;function arrayFromArgs() {&lt;br&gt;    return $.makeArray(arguments);&lt;br&gt;}&lt;br&gt;&lt;br&gt;arrayFromArgs(&#039;3&#039;, &#039;2&#039;, &#039;4&#039;);</description>
		<content:encoded><![CDATA[<p>That&#39;s not true, you can use the $.makeArray to transform arguments inside funtion:<br />function arrayFromArgs() {<br />    return $.makeArray(arguments);<br />}</p>
<p>arrayFromArgs(&#39;3&#39;, &#39;2&#39;, &#39;4&#39;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jane</title>
		<link>http://api.jquery.com/jQuery.makeArray/comment-page-1/#comment-5732</link>
		<dc:creator>Jane</dc:creator>
		<pubDate>Mon, 13 Sep 2010 08:02:08 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=208#comment-5732</guid>
		<description>If theres only I single element I get an empty array instead of an array with single element. Any idea why??</description>
		<content:encoded><![CDATA[<p>If theres only I single element I get an empty array instead of an array with single element. Any idea why??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan Curtis</title>
		<link>http://api.jquery.com/jQuery.makeArray/comment-page-1/#comment-4405</link>
		<dc:creator>Nathan Curtis</dc:creator>
		<pubDate>Thu, 10 Jun 2010 13:32:56 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=208#comment-4405</guid>
		<description>Technically, you can use makeArguments to make the arguments object into a real array, but it&#039;s probably slower than the Array.prototype.slice.call() method. The only requirements for makeArguments to turn an object into an array are that the object has a &quot;length&quot; property, and properties with numerical keys, e.g. { &#039;length&#039;:3, &#039;0&#039;:&quot;foo&quot;, &#039;1&#039;:&quot;bar&quot;, &#039;2&#039;:&quot;baz&quot; }. The arguments object satisfies those requirements.</description>
		<content:encoded><![CDATA[<p>Technically, you can use makeArguments to make the arguments object into a real array, but it&#39;s probably slower than the Array.prototype.slice.call() method. The only requirements for makeArguments to turn an object into an array are that the object has a &#8220;length&#8221; property, and properties with numerical keys, e.g. { &#39;length&#39;:3, &#39;0&#39;:&#8221;foo&#8221;, &#39;1&#39;:&#8221;bar&#8221;, &#39;2&#39;:&#8221;baz&#8221; }. The arguments object satisfies those requirements.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl Swedberg</title>
		<link>http://api.jquery.com/jQuery.makeArray/comment-page-1/#comment-127</link>
		<dc:creator>Karl Swedberg</dc:creator>
		<pubDate>Thu, 14 Jan 2010 19:27:13 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=208#comment-127</guid>
		<description>No, but for that you can just do something like this:&lt;br&gt;&lt;br&gt;function arrayFromArgs() {&lt;br&gt;    return Array.slice.call(arguments);&lt;br&gt;}&lt;br&gt;&lt;br&gt;and then call it:&lt;br&gt;&lt;br&gt;arrayFromArgs(&#039;3&#039;, &#039;2&#039;, &#039;4&#039;);</description>
		<content:encoded><![CDATA[<p>No, but for that you can just do something like this:</p>
<p>function arrayFromArgs() {<br />    return Array.slice.call(arguments);<br />}</p>
<p>and then call it:</p>
<p>arrayFromArgs(&#39;3&#39;, &#39;2&#39;, &#39;4&#39;);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://api.jquery.com/jQuery.makeArray/comment-page-1/#comment-8826</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Thu, 14 Jan 2010 07:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://api.jquery.com/?p=208#comment-8826</guid>
		<description>Can it be use for $.makeArray(arguments)?</description>
		<content:encoded><![CDATA[<p>Can it be use for $.makeArray(arguments)?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

