<?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>Forem: Mario</title>
    <description>The latest articles on Forem by Mario (@mrmario).</description>
    <link>https://forem.com/mrmario</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%2F339352%2F0d8d7a10-45c4-4ee6-9c90-749dd0f5e24e.jpg</url>
      <title>Forem: Mario</title>
      <link>https://forem.com/mrmario</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/mrmario"/>
    <language>en</language>
    <item>
      <title>let, var, const | write clean and safe code</title>
      <dc:creator>Mario</dc:creator>
      <pubDate>Sat, 20 Jun 2020 20:49:30 +0000</pubDate>
      <link>https://forem.com/mrmario/let-var-const-write-clean-and-safe-code-37hh</link>
      <guid>https://forem.com/mrmario/let-var-const-write-clean-and-safe-code-37hh</guid>
      <description>&lt;p&gt;Hello!&lt;/p&gt;

&lt;p&gt;I want to talk a bit about JS history.&lt;/p&gt;

&lt;p&gt;So JavaScript was created in just &lt;strong&gt;10 days by Brendam Eich&lt;/strong&gt; in 1995 while he was working on Netscape Navigator.&lt;/p&gt;

&lt;p&gt;After creating the language they had a problem what name to choose, For the popularity of Java they changed the name to Javascript. By the way, the original name was LiveScript.😂&lt;/p&gt;

&lt;p&gt;Because of its popularity and the competing versions, it was taken to ECMA International. You can ask, “ok bro we understand it, but what does ES-5 or ES-6 mean?”&lt;/p&gt;

&lt;p&gt;Ok, look the versions of the language are referenced by the ECMA version number, like ES5 and ES6.&lt;/p&gt;

&lt;p&gt;ECMAScript 2015 = ES-6.&lt;/p&gt;

&lt;p&gt;Ok well, we understand its history&lt;/p&gt;

&lt;p&gt;We had just &lt;strong&gt;var&lt;/strong&gt; for variable declaration in the original version. After ES6 new features came. Addition variable let and const which can be used for variable declaration.&lt;/p&gt;

&lt;p&gt;We can see the browsers supported by let and const via &lt;a href="http://kangax.github.io/compat-table/es6/"&gt;http://kangax.github.io/compat-table/es6/&lt;/a&gt; site&lt;/p&gt;

&lt;p&gt;You can say “ok, every year new features come, and every browser not supporting new features, what should I do? ”&lt;/p&gt;

&lt;p&gt;Ok, good question 😊 In this situation babel comes into play&lt;/p&gt;

&lt;p&gt;&lt;em&gt;“Babel is a JavaScript transpiler that converts edge JavaScript into plain old ES5 JavaScript that can run in any browser (even the old ones).”&lt;/em&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[1, 2, 3].map(n =&amp;gt; n + 1);

//It will be compiled to:

[1, 2, 3].map(function(n) {
    return n + 1;
});
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;You can find out more on babel’s website. &lt;a href="https://babeljs.io/"&gt;https://babeljs.io/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Ok, let me come to our main topic, but I would like to mention a concept of scope. Because it is important for understanding differences.&lt;/p&gt;

&lt;p&gt;Scope essentially means where these variables are available for use.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Global scope&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;We can define them anywhere in the JavaScript code. And then we can access these variables from anywhere&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Function Scope&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;These are variables that are valid only in the function they are defined. We cannot access these variables externally.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Block Scope&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Block scope is the part between any {} curly brackets. (if,else,for)&lt;/p&gt;

&lt;p&gt;So we are ready. Soooooooooooo Let's-a go, little guys!😃&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Var&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Var is globally scoped or function scoped. It is globally scoped when a var variable is declared outside a function. If it is the global scope, it means available to the entire window.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ttFVjKEg--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/h3b569vozhnt8l55xb6j.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ttFVjKEg--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/h3b569vozhnt8l55xb6j.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Let's look at examples&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--QciMixJg--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/vznypx2slr4qhzij2w8w.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--QciMixJg--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/vznypx2slr4qhzij2w8w.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This error is telling us that &lt;strong&gt;hello&lt;/strong&gt; doesn’t exist or it’s not accessible from the window. That’s because it has the functional scope and can’t be accessed from outside that function. Let's imagine like this “if we have curly braces, they are hiding this variable from the outside environment”&lt;/p&gt;

&lt;p&gt;Popular example:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--VH4tqYnX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/vgbith7ffg5aonmk41v1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--VH4tqYnX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/vgbith7ffg5aonmk41v1.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The variable value can be changed &lt;strong&gt;later&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--BlPc_m5X--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/e8wrzel3xfopyg8p1hcp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--BlPc_m5X--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/e8wrzel3xfopyg8p1hcp.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Variable can be &lt;strong&gt;redefined&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--1z_R_6qJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/eaajo784b5u7qyv6b2ll.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--1z_R_6qJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/eaajo784b5u7qyv6b2ll.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Hoisting of var&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;And one last thing is &lt;strong&gt;hoisting&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;“Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope during compile phase of its execution context”.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Var&lt;/strong&gt; variables are initialized value of undefined during the &lt;strong&gt;&lt;em&gt;“read-only”&lt;/em&gt;&lt;/strong&gt; phase.&lt;br&gt;
Ok well, What does it mean?&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--NC7PwYuw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/nknwn7kj6vn67fbrzhxf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--NC7PwYuw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/nknwn7kj6vn67fbrzhxf.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Not defined&lt;/strong&gt; and &lt;strong&gt;undefined&lt;/strong&gt; aren’t the same thing:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;not defined suggests that the variable doesn’t exist at all&lt;br&gt;
undefined means that your interpreter allocated memory for this variable but no value was assigned to it yet&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Let&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Let is preferred for variable declaration. It’s no surprise as it comes as an improvement to the &lt;strong&gt;var&lt;/strong&gt; declarations.&lt;/p&gt;

&lt;p&gt;Ok well let's look at examples:&lt;/p&gt;

&lt;p&gt;The &lt;strong&gt;variable value&lt;/strong&gt; can be changed later:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--uRU5CMou--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/elylqidp1kxe0m7011c1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--uRU5CMou--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/elylqidp1kxe0m7011c1.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Let&lt;/strong&gt; can only be defined once.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--mwIU_ZiQ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/8bs7fcm2i63ga8dnmyvg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--mwIU_ZiQ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/8bs7fcm2i63ga8dnmyvg.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;However, if the same variable is defined in &lt;strong&gt;different scopes&lt;/strong&gt;, there will be no error.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--_ygcR1uV--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/7mfy71bdy3x7bdipn9d4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--_ygcR1uV--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/7mfy71bdy3x7bdipn9d4.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;ok, you can ask “hmmm ok cooooool, but why there is no error here?”&lt;/p&gt;

&lt;p&gt;Good question, This is because both of them are treated as different variables because they have different scopes.&lt;/p&gt;

&lt;p&gt;When using &lt;strong&gt;let&lt;/strong&gt;, we don't have to bother if we have used a name for a variable before. Because variable can exists only within its scope. This fact makes let a better choice than var.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Let&lt;/strong&gt; is block scope. A code block is anything between {}. So it means that if/else and for loops are code blocks.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Z5WawFbL--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/2p9jp4wey96d174zuhl6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Z5WawFbL--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/2p9jp4wey96d174zuhl6.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;One interesting example&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--z6NG56ew--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/7fbq9sfc3bvhe6g07z6j.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--z6NG56ew--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/7fbq9sfc3bvhe6g07z6j.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Hoisting of let&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Like &lt;strong&gt;var, let&lt;/strong&gt; variables are hoisted to the top of its scope. However, unlike var, calling a let variable before declaring and assigning it will throw a not defined error. So that, let variables are hoisted &lt;strong&gt;but not initialized&lt;/strong&gt;. It means, let variables are not given a value of &lt;strong&gt;undefined&lt;/strong&gt;. We call it &lt;br&gt;
&lt;strong&gt;temporal dead zone.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--5K5qospv--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/huleiagj69ij1jqerco3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--5K5qospv--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/huleiagj69ij1jqerco3.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;we can get an output of &lt;strong&gt;undefined&lt;/strong&gt; if we declare our variables like this:&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ze93gazp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/jaqs398hb4dnzi8mxcwx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ze93gazp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/jaqs398hb4dnzi8mxcwx.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Const&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;Let’s say, you have some data variables and it should not be changed.At this time &lt;strong&gt;const&lt;/strong&gt; comes to help us. Really Thanks God, developers created const. It is really helpful. You will see it in your future projects.&lt;br&gt;
&lt;strong&gt;const&lt;/strong&gt; declarations are &lt;strong&gt;blocked scoped&lt;/strong&gt;. Like let declarations, const declarations can only be accessed within the block it was declared.&lt;br&gt;
&lt;strong&gt;const&lt;/strong&gt; cannot be &lt;strong&gt;updated or re-declared.&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--tFX24HLr--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/a4vukue29ushc8ix8uat.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--tFX24HLr--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/a4vukue29ushc8ix8uat.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--eQIhKHgu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/vrvm842jt0s45l2e850i.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--eQIhKHgu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/vrvm842jt0s45l2e850i.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
It &lt;strong&gt;can be modified&lt;/strong&gt; when &lt;em&gt;assigned value itself is in the form of an&lt;/em&gt; &lt;strong&gt;&lt;em&gt;object&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--oL0XN-To--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/e5qjkrwg01jym1gxniv6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--oL0XN-To--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/e5qjkrwg01jym1gxniv6.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Hoisting of const&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--oGZuPCVB--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/5davly5fm8c89d082hi2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--oGZuPCVB--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/5davly5fm8c89d082hi2.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Conclusion&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;I suggest you avoid using &lt;strong&gt;var&lt;/strong&gt; keyword because it creates variables that are functional scoped not block scoped.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--oikKRhL---/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/jpq3rlpkotytsqai6wpe.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--oikKRhL---/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/jpq3rlpkotytsqai6wpe.jpg" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
You can say these are &lt;em&gt;unimportant things but please be careful in the future they can be a problem for you.&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;So write clean and safe code🙂&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;Thank you very much for reading this article. I hope it was useful for you.&lt;/p&gt;

&lt;p&gt;Byeeeee,&lt;br&gt;
&lt;em&gt;Thanks for playing! Way to go!🙂&lt;/em&gt;&lt;br&gt;
Happy Coding.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--3tKH_k2y--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/3pfawntwnm751hpuhnf5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--3tKH_k2y--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/3pfawntwnm751hpuhnf5.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>variables</category>
      <category>es6</category>
      <category>frontend</category>
    </item>
  </channel>
</rss>
