<?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>betweenthebraces.com</title>
	<atom:link href="http://betweenthebraces.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://betweenthebraces.com</link>
	<description>Exploring the world of object orientated development</description>
	<lastBuildDate>Sun, 15 Jan 2012 09:18:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>Sneaky False Value In JavaScript</title>
		<link>http://betweenthebraces.com/?p=190</link>
		<comments>http://betweenthebraces.com/?p=190#comments</comments>
		<pubDate>Sun, 15 Jan 2012 09:18:34 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[boolean]]></category>
		<category><![CDATA[False]]></category>

		<guid isPermaLink="false">http://betweenthebraces.com/?p=190</guid>
		<description><![CDATA[Speaking to Gokhan at work today he pointed out a lovely thing he had just read about JavaScript and false values. asserts.equals(true, false == '\n'); So even though a blank string is coerced to false, and the abive example is &#8230; <a href="http://betweenthebraces.com/?p=190">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://betweenthebraces.com/?feed=rss2&#038;p=190</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript False Values</title>
		<link>http://betweenthebraces.com/?p=178</link>
		<comments>http://betweenthebraces.com/?p=178#comments</comments>
		<pubDate>Mon, 19 Dec 2011 09:45:21 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[False]]></category>

		<guid isPermaLink="false">http://betweenthebraces.com/?p=178</guid>
		<description><![CDATA[In JavaScript you have truthy values and falsey values, and you have to be one of them. If you are the number 1 you are a truth value. If you are the number 0 you are a false value. There &#8230; <a href="http://betweenthebraces.com/?p=178">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://betweenthebraces.com/?feed=rss2&#038;p=178</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&amp;&amp; &#124;&#124;, Using Them To Set Variables</title>
		<link>http://betweenthebraces.com/?p=172</link>
		<comments>http://betweenthebraces.com/?p=172#comments</comments>
		<pubDate>Wed, 07 Dec 2011 20:32:29 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Operators]]></category>

		<guid isPermaLink="false">http://betweenthebraces.com/?p=172</guid>
		<description><![CDATA[On a course I went on recently I discovered the power behind using operators when setting variables that can really get around all those ifs and block statements. function updateOptions(myObject) { var options = {}; if (myObject) { if (myObject.options) &#8230; <a href="http://betweenthebraces.com/?p=172">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://betweenthebraces.com/?feed=rss2&#038;p=172</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Namespaces and JavaScript</title>
		<link>http://betweenthebraces.com/?p=140</link>
		<comments>http://betweenthebraces.com/?p=140#comments</comments>
		<pubDate>Sat, 03 Dec 2011 23:36:11 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Object Orientated Developement]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[imports]]></category>
		<category><![CDATA[Namespaces]]></category>
		<category><![CDATA[packages]]></category>
		<category><![CDATA[Using]]></category>

		<guid isPermaLink="false">http://betweenthebraces.com/?p=140</guid>
		<description><![CDATA[A big problem in JavaScript is the global scope. Everybody has access to it and other libraries can easily overwrite or use things that you intended to be for yourself. You can try to solve this with a namespace to &#8230; <a href="http://betweenthebraces.com/?p=140">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://betweenthebraces.com/?feed=rss2&#038;p=140</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What To Call Your Namespaces &amp; Packages</title>
		<link>http://betweenthebraces.com/?p=133</link>
		<comments>http://betweenthebraces.com/?p=133#comments</comments>
		<pubDate>Tue, 29 Nov 2011 19:01:23 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[Object Orientated Developement]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Import]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Namespace]]></category>
		<category><![CDATA[Using]]></category>

		<guid isPermaLink="false">http://betweenthebraces.com/?p=133</guid>
		<description><![CDATA[You can practically call your namespace anything you want. Different languages seem to have their own conventions, but the reverse DNS style is what I like the most. The idea of a namespace is to encapsulate your code, hide it &#8230; <a href="http://betweenthebraces.com/?p=133">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://betweenthebraces.com/?feed=rss2&#038;p=133</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Comma Operator</title>
		<link>http://betweenthebraces.com/?p=119</link>
		<comments>http://betweenthebraces.com/?p=119#comments</comments>
		<pubDate>Mon, 28 Nov 2011 11:04:52 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Comma]]></category>
		<category><![CDATA[Operator]]></category>

		<guid isPermaLink="false">http://betweenthebraces.com/?p=119</guid>
		<description><![CDATA[So I discovered today at a JavaScript training session with Christian Johansen that JavaScript has such a thing as a comma operator! You may be used to a comma separator, however this is different. Comma separator The separator is used &#8230; <a href="http://betweenthebraces.com/?p=119">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://betweenthebraces.com/?feed=rss2&#038;p=119</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Creating Classes in JavaScript</title>
		<link>http://betweenthebraces.com/?p=44</link>
		<comments>http://betweenthebraces.com/?p=44#comments</comments>
		<pubDate>Wed, 23 Nov 2011 22:10:04 +0000</pubDate>
		<dc:creator>Rick</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Object Orientated Developement]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://betweenthebraces.com/?p=44</guid>
		<description><![CDATA[There is always a big argument between developers everywhere; Is JavaScript an object orientated language? Well I believe it is! The key areas of OO are inheritance, polymorphism, abstraction and encapsulation. Now JavaScript may struggle to do all these as &#8230; <a href="http://betweenthebraces.com/?p=44">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://betweenthebraces.com/?feed=rss2&#038;p=44</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
