<?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"
	>

<channel>
	<title>Technical Interview Questions &#187; Javascript Interview Questions</title>
	<atom:link href="http://www.technicalinterview.info/category/javascript-interview-questions/feed" rel="self" type="application/rss+xml" />
	<link>http://www.technicalinterview.info</link>
	<description>Java Interview Questions &#124; IT interview questions &#124; Software Testing Interview questions &#124; .Net Interview Questions &#124; Job Interview Questions &#38; Answers &#124; Tough Interview Questions &#124; Technology Interview Questions &#124; Tech Interview Questions &#124; Testing Interview Questions &#124; SAP Interview Questions &#124; ABAP Interview Questions &#124; Data Warehousing Interview Questions</description>
	<pubDate>Tue, 02 Sep 2008 08:33:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>How to create a function using function constructor?</title>
		<link>http://www.technicalinterview.info/how-to-create-a-function-using-function-constructor/</link>
		<comments>http://www.technicalinterview.info/how-to-create-a-function-using-function-constructor/#comments</comments>
		<pubDate>Mon, 26 Feb 2007 13:13:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Javascript Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/how-to-create-a-function-using-function-constructor.html</guid>
		<description><![CDATA[The following example illustrates this
It creates a function called square with argument x and returns x multiplied by itself.
var square = new Function (&#8221;x&#8221;,&#8221;return x*x&#8221;);
]]></description>
			<content:encoded><![CDATA[<p>The following example illustrates this<br />
It creates a function called square with argument x and returns x multiplied by itself.<br />
var square = new Function (&#8221;x&#8221;,&#8221;return x*x&#8221;);</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/how-to-create-a-function-using-function-constructor/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What does break and continue statements do?</title>
		<link>http://www.technicalinterview.info/what-does-break-and-continue-statements-do/</link>
		<comments>http://www.technicalinterview.info/what-does-break-and-continue-statements-do/#comments</comments>
		<pubDate>Mon, 26 Feb 2007 13:13:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Javascript Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/what-does-break-and-continue-statements-do.html</guid>
		<description><![CDATA[Continue statement continues the current loop (if label not specified) in a new iteration whereas break statement exits the current loop.
]]></description>
			<content:encoded><![CDATA[<p>Continue statement continues the current loop (if label not specified) in a new iteration whereas break statement exits the current loop.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/what-does-break-and-continue-statements-do/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What does the delete operator do?</title>
		<link>http://www.technicalinterview.info/what-does-the-delete-operator-do/</link>
		<comments>http://www.technicalinterview.info/what-does-the-delete-operator-do/#comments</comments>
		<pubDate>Mon, 26 Feb 2007 13:13:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Javascript Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/what-does-the-delete-operator-do.html</guid>
		<description><![CDATA[The delete operator is used to delete all the variables and objects used in the program ,but it does not delete variables declared with var keyword.
]]></description>
			<content:encoded><![CDATA[<p>The delete operator is used to delete all the variables and objects used in the program ,but it does not delete variables declared with var keyword.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/what-does-the-delete-operator-do/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is === operator?</title>
		<link>http://www.technicalinterview.info/what-is-operator/</link>
		<comments>http://www.technicalinterview.info/what-is-operator/#comments</comments>
		<pubDate>Mon, 26 Feb 2007 13:12:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Javascript Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/what-is-operator.html</guid>
		<description><![CDATA[==== is strict equality operator ,it returns true only when the two operands are having the same value without any type conversion.
]]></description>
			<content:encoded><![CDATA[<p>==== is strict equality operator ,it returns true only when the two operands are having the same value without any type conversion.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/what-is-operator/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What are undefined and undeclared variables?</title>
		<link>http://www.technicalinterview.info/what-are-undefined-and-undeclared-variables/</link>
		<comments>http://www.technicalinterview.info/what-are-undefined-and-undeclared-variables/#comments</comments>
		<pubDate>Mon, 26 Feb 2007 13:12:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Javascript Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/what-are-undefined-and-undeclared-variables.html</guid>
		<description><![CDATA[Undeclared variables are those that are not declared in the program (do not exist at all),trying to read their values gives runtime error.But if undeclared variables are assigned then implicit declaration is done .
Undefined variables are those that are not assigned any value but are declared in the program.Trying to read such variables gives special [...]]]></description>
			<content:encoded><![CDATA[<p>Undeclared variables are those that are not declared in the program (do not exist at all),trying to read their values gives runtime error.But if undeclared variables are assigned then implicit declaration is done .</p>
<p>Undefined variables are those that are not assigned any value but are declared in the program.Trying to read such variables gives special value called undefined value.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/what-are-undefined-and-undeclared-variables/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Does javascript have the concept level scope?</title>
		<link>http://www.technicalinterview.info/does-javascript-have-the-concept-level-scope/</link>
		<comments>http://www.technicalinterview.info/does-javascript-have-the-concept-level-scope/#comments</comments>
		<pubDate>Mon, 26 Feb 2007 13:11:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Javascript Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/does-javascript-have-the-concept-level-scope.html</guid>
		<description><![CDATA[No.Javascript does not have block level scope,all the variables declared inside a function possess the same level of scope unlike c,c++,java.
]]></description>
			<content:encoded><![CDATA[<p>No.Javascript does not have block level scope,all the variables declared inside a function possess the same level of scope unlike c,c++,java.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/does-javascript-have-the-concept-level-scope/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is variable typing in javascript?</title>
		<link>http://www.technicalinterview.info/what-is-variable-typing-in-javascript/</link>
		<comments>http://www.technicalinterview.info/what-is-variable-typing-in-javascript/#comments</comments>
		<pubDate>Mon, 26 Feb 2007 13:11:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Javascript Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/what-is-variable-typing-in-javascript.html</guid>
		<description><![CDATA[It is perfectly legal to assign a number to a variable and then assign a string to the same variable as follows
example
i = 10;
i = &#8220;string&#8221;;
This is called variable typing
]]></description>
			<content:encoded><![CDATA[<p>It is perfectly legal to assign a number to a variable and then assign a string to the same variable as follows<br />
example<br />
i = 10;<br />
i = &#8220;string&#8221;;<br />
This is called variable typing</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/what-is-variable-typing-in-javascript/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is the difference between undefined value and null value?</title>
		<link>http://www.technicalinterview.info/what-is-the-difference-between-undefined-value-and-null-value/</link>
		<comments>http://www.technicalinterview.info/what-is-the-difference-between-undefined-value-and-null-value/#comments</comments>
		<pubDate>Mon, 26 Feb 2007 13:10:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Javascript Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/what-is-the-difference-between-undefined-value-and-null-value.html</guid>
		<description><![CDATA[(i)Undefined value cannot be explicitly stated that is there is no keyword called undefined whereas null value has keyword called null
(ii)typeof undefined variable or property returns undefined whereas typeof null value returns object
]]></description>
			<content:encoded><![CDATA[<p>(i)Undefined value cannot be explicitly stated that is there is no keyword called undefined whereas null value has keyword called null</p>
<p>(ii)typeof undefined variable or property returns undefined whereas typeof null value returns object</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/what-is-the-difference-between-undefined-value-and-null-value/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What does undefined value mean in javascript?</title>
		<link>http://www.technicalinterview.info/what-does-undefined-value-mean-in-javascript/</link>
		<comments>http://www.technicalinterview.info/what-does-undefined-value-mean-in-javascript/#comments</comments>
		<pubDate>Mon, 26 Feb 2007 13:09:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Javascript Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/what-does-undefined-value-mean-in-javascript.html</guid>
		<description><![CDATA[Undefined value means the variable used in the code doesnt exist or is not assigned any value or the property doesnt exist.
]]></description>
			<content:encoded><![CDATA[<p>Undefined value means the variable used in the code doesnt exist or is not assigned any value or the property doesnt exist.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/what-does-undefined-value-mean-in-javascript/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What does javascript null mean?</title>
		<link>http://www.technicalinterview.info/what-does-javascript-null-mean/</link>
		<comments>http://www.technicalinterview.info/what-does-javascript-null-mean/#comments</comments>
		<pubDate>Mon, 26 Feb 2007 13:09:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Javascript Interview Questions]]></category>

		<guid isPermaLink="false">http://www.technicalinterview.info/what-does-javascript-null-mean.html</guid>
		<description><![CDATA[The null value is a unique value representing no value or no object.
It implies no object,or null string,no valid boolean value,no number and no array object.
]]></description>
			<content:encoded><![CDATA[<p>The null value is a unique value representing no value or no object.<br />
It implies no object,or null string,no valid boolean value,no number and no array object.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technicalinterview.info/what-does-javascript-null-mean/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
