<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Darrienrjohnson</title>
    <description>The latest articles on DEV Community by Darrienrjohnson (@darrienrjohnson).</description>
    <link>https://dev.to/darrienrjohnson</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F715291%2Ff21b7c33-9544-4ec0-b5e6-ff5e144f2fa9.png</url>
      <title>DEV Community: Darrienrjohnson</title>
      <link>https://dev.to/darrienrjohnson</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/darrienrjohnson"/>
    <language>en</language>
    <item>
      <title>Understanding functions</title>
      <dc:creator>Darrienrjohnson</dc:creator>
      <pubDate>Tue, 28 Sep 2021 22:32:09 +0000</pubDate>
      <link>https://dev.to/darrienrjohnson/understanding-functions-3p3o</link>
      <guid>https://dev.to/darrienrjohnson/understanding-functions-3p3o</guid>
      <description>&lt;p&gt;function () {&lt;br&gt;
  return 1;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;// The above is the same as...&lt;/p&gt;

&lt;p&gt;() =&amp;gt; {&lt;br&gt;
  return 1;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;// All the code above create a un-reusable function. All of the code below creates a reusable function.&lt;/p&gt;

&lt;p&gt;function a() {&lt;br&gt;
  return 1;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;// The above code is the same as...&lt;/p&gt;

&lt;p&gt;var a = function () {&lt;br&gt;
  return 1;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;// The above code is the same as...&lt;/p&gt;

&lt;p&gt;var a = () =&amp;gt; {&lt;br&gt;
  return 1;&lt;br&gt;
}&lt;/p&gt;

</description>
      <category>javascript</category>
    </item>
    <item>
      <title>Topics to focus on to become brilliant at CSS</title>
      <dc:creator>Darrienrjohnson</dc:creator>
      <pubDate>Tue, 28 Sep 2021 22:28:48 +0000</pubDate>
      <link>https://dev.to/darrienrjohnson/topics-to-focus-on-to-become-brilliant-at-css-3oh6</link>
      <guid>https://dev.to/darrienrjohnson/topics-to-focus-on-to-become-brilliant-at-css-3oh6</guid>
      <description>&lt;p&gt;variables&lt;br&gt;
selectors&lt;br&gt;
specificity&lt;br&gt;
cascading&lt;br&gt;
box model&lt;br&gt;
position&lt;br&gt;
float&lt;br&gt;
flow&lt;br&gt;
flexbox&lt;br&gt;
grid&lt;/p&gt;

</description>
      <category>css</category>
    </item>
  </channel>
</rss>
