<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1042189" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1042189</link>
    <description></description>
    <language>en</language>
          <item>
    <title>Probably because there is</title>
    <link>https://www.webmaster-forums.net/web-programming-and-application-development/3-rather-2#comment-1234650</link>
    <description> &lt;p&gt;Probably because there is not negative to the assignment operator - you can&#039;t unassign something &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;.  I look at it as replacing one of the = with a ! for the not.  It helps me remember it that way.&lt;/p&gt;
 </description>
     <pubDate>Wed, 29 Oct 2008 19:50:30 +0000</pubDate>
 <dc:creator>pr0gr4mm3r</dc:creator>
 <guid isPermaLink="false">comment 1234650 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>I wonder why the designers</title>
    <link>https://www.webmaster-forums.net/web-programming-and-application-development/3-rather-2#comment-1234648</link>
    <description> &lt;blockquote&gt;&lt;p&gt;I wonder why the designers of these languages...&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;How about &lt;strong&gt;REFERER&lt;/strong&gt; in PHP &lt;em&gt;vs&lt;/em&gt; &lt;strong&gt;referrer&lt;/strong&gt; in JavaScript?&lt;/p&gt;
&lt;p&gt;and&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;var myCars = new Array(&quot;Saab&quot;,&quot;Volvo&quot;,&quot;BMW&quot;)&lt;/strong&gt; (JavaScript (semi-colon optional))&lt;br /&gt;
&lt;em&gt;vs&lt;/em&gt;&lt;br /&gt;
&lt;strong&gt;var $myCars = array(&quot;Saab&quot;,&quot;Volvo&quot;,&quot;BMW&quot;);&lt;/strong&gt; (PHP)&lt;/p&gt;
 </description>
     <pubDate>Wed, 29 Oct 2008 18:15:57 +0000</pubDate>
 <dc:creator>decibel.places</dc:creator>
 <guid isPermaLink="false">comment 1234648 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>pr0gr4mm3r wrote:
Yup, !==</title>
    <link>https://www.webmaster-forums.net/web-programming-and-application-development/3-rather-2#comment-1234647</link>
    <description> &lt;p&gt;&lt;div class=&quot;quote-msg&quot;&gt;&lt;div class=&quot;quote-author&quot;&gt;&lt;em&gt;pr0gr4mm3r&lt;/em&gt; wrote:&lt;/div&gt;Yup, !== is the opposite of === just as != is the opposite of ==.&lt;/div&gt;&lt;br /&gt;
I wonder why the designers of these languages say == is the equality operator and != is the negation of that. != should be the negation of assignment, and !== should be the negation of equality. &lt;/p&gt;
&lt;p&gt;It&#039;s soooo confusing &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 29 Oct 2008 17:56:01 +0000</pubDate>
 <dc:creator>teammatt3</dc:creator>
 <guid isPermaLink="false">comment 1234647 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Yup, !== is the opposite of</title>
    <link>https://www.webmaster-forums.net/web-programming-and-application-development/3-rather-2#comment-1234646</link>
    <description> &lt;p&gt;Yup, !== is the opposite of === just as != is the opposite of ==.&lt;/p&gt;
 </description>
     <pubDate>Wed, 29 Oct 2008 17:17:47 +0000</pubDate>
 <dc:creator>pr0gr4mm3r</dc:creator>
 <guid isPermaLink="false">comment 1234646 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>I saw some code on DZone</title>
    <link>https://www.webmaster-forums.net/web-programming-and-application-development/3-rather-2#comment-1234645</link>
    <description> &lt;p&gt;I saw some code on DZone that used &lt;code&gt;!==FALSE&lt;/code&gt; and wondered if that is the proper syntax..&lt;/p&gt;
 </description>
     <pubDate>Wed, 29 Oct 2008 17:14:32 +0000</pubDate>
 <dc:creator>decibel.places</dc:creator>
 <guid isPermaLink="false">comment 1234645 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>You are correct in saying</title>
    <link>https://www.webmaster-forums.net/web-programming-and-application-development/3-rather-2#comment-1234644</link>
    <description> &lt;p&gt;You are correct in saying === checks the type and == does not.  This only means that if you do ($var == FALSE), the $var can be FALSE, 0, null, or empty string.  With ($var === FALSE), $var can be only FALSE.&lt;/p&gt;
&lt;p&gt;I hardly ever use === unless I need to test a function that might return either 0 or FALSE.  &lt;a href=&quot;http://us2.php.net/manual/en/function.strpos.php&quot;&gt;strpos()&lt;/a&gt; is one of them.&lt;/p&gt;
&lt;p&gt;Here are some references on php.net that further explains this:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://us2.php.net/manual/en/language.types.boolean.php&quot; title=&quot;http://us2.php.net/manual/en/language.types.boolean.php&quot;&gt;http://us2.php.net/manual/en/language.types.boolean.php&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://us2.php.net/manual/en/language.operators.comparison.php&quot; title=&quot;http://us2.php.net/manual/en/language.operators.comparison.php&quot;&gt;http://us2.php.net/manual/en/language.operators.comparison.php&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 29 Oct 2008 16:39:50 +0000</pubDate>
 <dc:creator>pr0gr4mm3r</dc:creator>
 <guid isPermaLink="false">comment 1234644 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
