<?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>Joys of Programming &#187; JavaScript</title>
	<atom:link href="http://joysofprogramming.com/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://joysofprogramming.com</link>
	<description>Programming made simpler, easier and Joyful experience</description>
	<lastBuildDate>Mon, 30 Jan 2012 14:11:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Javascript: Working with Two dimensional arrays</title>
		<link>http://joysofprogramming.com/javascript-working-with-two-dimensional-arrays/</link>
		<comments>http://joysofprogramming.com/javascript-working-with-two-dimensional-arrays/#comments</comments>
		<pubDate>Mon, 14 Mar 2011 13:41:33 +0000</pubDate>
		<dc:creator>Joys of Programming</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[javascript 2D arrays]]></category>

		<guid isPermaLink="false">http://joysofprogramming.com/?p=29656</guid>
		<description><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29656&c=2110643927' target='_blank' rel='nofollow'>
				<img src='http://rss.buysellads.com/img.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29656&c=2110643927' border='0' alt='' /></a></p><br />You can work with one dimensional arrays by specifying the array elements in square brackets. Now if you want to work with two dimensional arrays, you can make a one dimensional array as one of the elements specified in square brackets Now to access each element, you have to specify both the row number and [...]<br /><p><a href='http://rss.buysellads.com/click.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29656&c=652546530' target='_blank' rel='nofollow'>
				<img src='http://rss.buysellads.com/img.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29656&c=652546530' border='0' alt='' /></a></p>]]></description>
		<wfw:commentRss>http://joysofprogramming.com/javascript-working-with-two-dimensional-arrays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript: Working with Arrays (One Dimensional)</title>
		<link>http://joysofprogramming.com/javascript-working-with-arrays/</link>
		<comments>http://joysofprogramming.com/javascript-working-with-arrays/#comments</comments>
		<pubDate>Mon, 14 Mar 2011 13:33:51 +0000</pubDate>
		<dc:creator>Joys of Programming</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[javascript arrays]]></category>

		<guid isPermaLink="false">http://joysofprogramming.com/?p=29655</guid>
		<description><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29655&c=1604103133' target='_blank' rel='nofollow'>
				<img src='http://rss.buysellads.com/img.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29655&c=1604103133' border='0' alt='' /></a></p><br />Working with arrays in Javascript is very simple. Specify the array elements in comma separated format in square formats. The index of the first element of the array starts with 0. So to access the first element of the array You can find the length of an array using length Check how to work with [...]<br /><p><a href='http://rss.buysellads.com/click.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29655&c=1973430445' target='_blank' rel='nofollow'>
				<img src='http://rss.buysellads.com/img.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29655&c=1973430445' border='0' alt='' /></a></p>]]></description>
		<wfw:commentRss>http://joysofprogramming.com/javascript-working-with-arrays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript: Working with Boolean</title>
		<link>http://joysofprogramming.com/javascript-working-with-boolean/</link>
		<comments>http://joysofprogramming.com/javascript-working-with-boolean/#comments</comments>
		<pubDate>Mon, 14 Mar 2011 13:07:17 +0000</pubDate>
		<dc:creator>Joys of Programming</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[javascript boolean]]></category>

		<guid isPermaLink="false">http://joysofprogramming.com/?p=29654</guid>
		<description><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29654&c=831020584' target='_blank' rel='nofollow'>
				<img src='http://rss.buysellads.com/img.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29654&c=831020584' border='0' alt='' /></a></p><br />In Javascript, there are two literals true and false corresponding to the boolean true and false respectively. As Javascript is a dynamically typed language, you can declare a boolean variable as follows You can use it in if conditions<br /><p><a href='http://rss.buysellads.com/click.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29654&c=317998988' target='_blank' rel='nofollow'>
				<img src='http://rss.buysellads.com/img.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29654&c=317998988' border='0' alt='' /></a></p>]]></description>
		<wfw:commentRss>http://joysofprogramming.com/javascript-working-with-boolean/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript: Working with Strings</title>
		<link>http://joysofprogramming.com/javascript-working-with-strings/</link>
		<comments>http://joysofprogramming.com/javascript-working-with-strings/#comments</comments>
		<pubDate>Sun, 13 Mar 2011 16:25:14 +0000</pubDate>
		<dc:creator>Joys of Programming</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[javascript strings]]></category>

		<guid isPermaLink="false">http://joysofprogramming.com/?p=29653</guid>
		<description><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29653&c=1258391828' target='_blank' rel='nofollow'>
				<img src='http://rss.buysellads.com/img.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29653&c=1258391828' border='0' alt='' /></a></p><br />Working with strings in Javascript is very simple. You need to put the string in double quotes or single quotes Now if you want to use them, you can simply use them in variables. Let&#8217;s same operations like concatenation (+)<br /><p><a href='http://rss.buysellads.com/click.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29653&c=829176450' target='_blank' rel='nofollow'>
				<img src='http://rss.buysellads.com/img.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29653&c=829176450' border='0' alt='' /></a></p>]]></description>
		<wfw:commentRss>http://joysofprogramming.com/javascript-working-with-strings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript: Working with Floating point Numbers</title>
		<link>http://joysofprogramming.com/javascript-working-with-floating-point-numbers/</link>
		<comments>http://joysofprogramming.com/javascript-working-with-floating-point-numbers/#comments</comments>
		<pubDate>Sun, 13 Mar 2011 16:14:25 +0000</pubDate>
		<dc:creator>Joys of Programming</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[javascript double]]></category>
		<category><![CDATA[javascript float]]></category>

		<guid isPermaLink="false">http://joysofprogramming.com/?p=29651</guid>
		<description><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29651&c=2020702327' target='_blank' rel='nofollow'>
				<img src='http://rss.buysellads.com/img.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29651&c=2020702327' border='0' alt='' /></a></p><br />Javascript is dynamically typed language. So unlike other programming languages like C/C++/Java, you need not explicitly specify the type like float, double to work with floating point numbers. You can simply mention Yes, it is as simple as that. And perform operations like<br /><p><a href='http://rss.buysellads.com/click.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29651&c=347024328' target='_blank' rel='nofollow'>
				<img src='http://rss.buysellads.com/img.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29651&c=347024328' border='0' alt='' /></a></p>]]></description>
		<wfw:commentRss>http://joysofprogramming.com/javascript-working-with-floating-point-numbers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript: Working with Integers</title>
		<link>http://joysofprogramming.com/javascript-working-with-integers/</link>
		<comments>http://joysofprogramming.com/javascript-working-with-integers/#comments</comments>
		<pubDate>Sun, 13 Mar 2011 16:00:52 +0000</pubDate>
		<dc:creator>Joys of Programming</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[javascript integers]]></category>

		<guid isPermaLink="false">http://joysofprogramming.com/?p=29650</guid>
		<description><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29650&c=91458590' target='_blank' rel='nofollow'>
				<img src='http://rss.buysellads.com/img.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29650&c=91458590' border='0' alt='' /></a></p><br />Javascript is dynamically typed language. So unlike other programming languages like C/C++/Java, you need not explicitly specify the type like int, Integer to work with integers. You can simply mention Yes, it is as simple as that.<br /><p><a href='http://rss.buysellads.com/click.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29650&c=399152895' target='_blank' rel='nofollow'>
				<img src='http://rss.buysellads.com/img.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29650&c=399152895' border='0' alt='' /></a></p>]]></description>
		<wfw:commentRss>http://joysofprogramming.com/javascript-working-with-integers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript: Working with Constants</title>
		<link>http://joysofprogramming.com/javascript-constants/</link>
		<comments>http://joysofprogramming.com/javascript-constants/#comments</comments>
		<pubDate>Sun, 13 Mar 2011 15:10:13 +0000</pubDate>
		<dc:creator>Joys of Programming</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[javascript constants]]></category>

		<guid isPermaLink="false">http://joysofprogramming.com/?p=29648</guid>
		<description><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29648&c=1588403730' target='_blank' rel='nofollow'>
				<img src='http://rss.buysellads.com/img.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29648&c=1588403730' border='0' alt='' /></a></p><br />Variables in Javascript which can take variable values during program execution. But if you want to work with constants like PI, you can make use of const. The syntax is The best example for a const is PI (used in various mathematical formulas) There are some more things that one can understand from the above [...]<br /><p><a href='http://rss.buysellads.com/click.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29648&c=1856980076' target='_blank' rel='nofollow'>
				<img src='http://rss.buysellads.com/img.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29648&c=1856980076' border='0' alt='' /></a></p>]]></description>
		<wfw:commentRss>http://joysofprogramming.com/javascript-constants/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript: Assignment of Variables</title>
		<link>http://joysofprogramming.com/javascript-assignment-variables/</link>
		<comments>http://joysofprogramming.com/javascript-assignment-variables/#comments</comments>
		<pubDate>Sun, 13 Mar 2011 11:55:24 +0000</pubDate>
		<dc:creator>Joys of Programming</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[javascript variables]]></category>

		<guid isPermaLink="false">http://joysofprogramming.com/?p=29646</guid>
		<description><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29646&c=1958502050' target='_blank' rel='nofollow'>
				<img src='http://rss.buysellads.com/img.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29646&c=1958502050' border='0' alt='' /></a></p><br />Once you have learned about the naming and declaration of variables in Javascript, let&#8217;s proceed further to know more about the usage of variables. Let&#8217;s begin with a simple example in C/C++. Those of you who are not familiar with C/C++, the above function declares a variable to be of type integer and prints it. [...]<br /><p><a href='http://rss.buysellads.com/click.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29646&c=12683264' target='_blank' rel='nofollow'>
				<img src='http://rss.buysellads.com/img.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29646&c=12683264' border='0' alt='' /></a></p>]]></description>
		<wfw:commentRss>http://joysofprogramming.com/javascript-assignment-variables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript: Variables</title>
		<link>http://joysofprogramming.com/javascript-variables/</link>
		<comments>http://joysofprogramming.com/javascript-variables/#comments</comments>
		<pubDate>Sun, 13 Mar 2011 11:36:28 +0000</pubDate>
		<dc:creator>Joys of Programming</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[javascript variables]]></category>

		<guid isPermaLink="false">http://joysofprogramming.com/?p=29645</guid>
		<description><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29645&c=391435707' target='_blank' rel='nofollow'>
				<img src='http://rss.buysellads.com/img.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29645&c=391435707' border='0' alt='' /></a></p><br />For any programming language, you first learn how to represent the various day to day usage like bill amount, name of a person, count of things. So the first step is to know whether there is support for Integers (to measure count), Floating point numbers (to express bill amount) and Strings (to write name). If [...]<br /><p><a href='http://rss.buysellads.com/click.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29645&c=1619792573' target='_blank' rel='nofollow'>
				<img src='http://rss.buysellads.com/img.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=29645&c=1619792573' border='0' alt='' /></a></p>]]></description>
		<wfw:commentRss>http://joysofprogramming.com/javascript-variables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Curl?</title>
		<link>http://joysofprogramming.com/what-is-curl/</link>
		<comments>http://joysofprogramming.com/what-is-curl/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 16:37:43 +0000</pubDate>
		<dc:creator>Joys of Programming</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Web page]]></category>
		<category><![CDATA[Web search engine]]></category>
		<category><![CDATA[Website]]></category>

		<guid isPermaLink="false">http://joysofprogramming.com/?p=104</guid>
		<description><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=104&c=118678889' target='_blank' rel='nofollow'>
				<img src='http://rss.buysellads.com/img.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=104&c=118678889' border='0' alt='' /></a></p><br />How did you open this website? Either you entered JoysofProgramming.com in your browser address bar or you came here from some search engine. There are multiple ways by which you can open a website. Opening a website from the browser is one of the many ways. It is possible to open a website from the [...]<br /><p><a href='http://rss.buysellads.com/click.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=104&c=1454408727' target='_blank' rel='nofollow'>
				<img src='http://rss.buysellads.com/img.php?z=1269089&k=23c392ff10b5df99bd4d1ca43340de34&a=104&c=1454408727' border='0' alt='' /></a></p>]]></description>
		<wfw:commentRss>http://joysofprogramming.com/what-is-curl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  joysofprogramming.com/tag/javascript/feed/ ) in 1.22252 seconds, on Feb 8th, 2012 at 1:05 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 8th, 2012 at 2:05 am UTC -->
