<?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>Keith Donegan &#187; Expressions</title>
	<atom:link href="http://keithdonegan.com/learning-javascript/expressions/feed/" rel="self" type="application/rss+xml" />
	<link>http://keithdonegan.com</link>
	<description>Just a blog about nothing</description>
	<lastBuildDate>Thu, 20 May 2010 00:42:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>JavaScript Expressions</title>
		<link>http://keithdonegan.com/javascript-expressions/</link>
		<comments>http://keithdonegan.com/javascript-expressions/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 17:25:07 +0000</pubDate>
		<dc:creator>Keith</dc:creator>
				<category><![CDATA[Expressions]]></category>

		<guid isPermaLink="false">http://www.keithdonegan.com/?p=276</guid>
		<description><![CDATA[An expression is a phrase of JavaScript that a JavaScript interpreter can evaluate to produce a value. 1.5 // Numeric literal &#8220;Keith Donean&#8221; // String literal true // Boolean literal null // Null literal value /java/ A regular expression literal { x:2, y:2 } // An object literal [2, 3, 5, 7, 11, 13] // [...]]]></description>
			<content:encoded><![CDATA[<p>An expression is a phrase of JavaScript that a JavaScript interpreter can evaluate to produce a value.</p>
<ul>
<li>1.5 // Numeric literal</li>
<li>&#8220;Keith Donean&#8221; // String literal</li>
<li>true // Boolean literal</li>
<li>null // Null literal value</li>
<li>/java/ A regular expression literal</li>
<li>{ x:2, y:2 } // An object literal</li>
<li>[2, 3, 5, 7, 11, 13] // An array literal</li>
<li>function(x) { return x+x; } // A functionliteral</li>
<li>a //The variable a</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://keithdonegan.com/javascript-expressions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
