<?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: Gabriel Nunes</title>
    <description>The latest articles on DEV Community by Gabriel Nunes (@gabrielnunes12).</description>
    <link>https://dev.to/gabrielnunes12</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%2F483587%2Fd50f6d82-d7b8-421a-86ae-537febed1ad7.jpeg</url>
      <title>DEV Community: Gabriel Nunes</title>
      <link>https://dev.to/gabrielnunes12</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/gabrielnunes12"/>
    <language>en</language>
    <item>
      <title>[Boost]</title>
      <dc:creator>Gabriel Nunes</dc:creator>
      <pubDate>Tue, 10 Dec 2024 17:02:01 +0000</pubDate>
      <link>https://dev.to/gabrielnunes12/-32kj</link>
      <guid>https://dev.to/gabrielnunes12/-32kj</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/juniourrau" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F627952%2Fac6cb717-a0ac-4f9a-80b3-094dc5c545a4.png" alt="juniourrau"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/juniourrau/8-type-of-load-balancing-104j" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;8 Type of Load Balancing&lt;/h2&gt;
      &lt;h3&gt;Ravin Rau ・ Dec 10 '24&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#discuss&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#webdev&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#cloudcomputing&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#programming&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
    </item>
    <item>
      <title>What are javascript engines</title>
      <dc:creator>Gabriel Nunes</dc:creator>
      <pubDate>Sun, 06 Jun 2021 02:33:02 +0000</pubDate>
      <link>https://dev.to/gabrielnunes12/what-are-javascript-engines-21op</link>
      <guid>https://dev.to/gabrielnunes12/what-are-javascript-engines-21op</guid>
      <description>&lt;p&gt;JavaScript engines is a complex topic, and knowing about these engines you will code even better, and to code optimized for web.&lt;/p&gt;

&lt;p&gt;["Virtual Machines"]&lt;/p&gt;

&lt;p&gt;A JavaScript engine has a type of "virtual machine" and this high-level language was designed for web-development. There are many "virtual machines" I explain later on this topic.&lt;/p&gt;

&lt;p&gt;[What is JavaScript engine] &lt;/p&gt;

&lt;p&gt;The basic job of JavaScript engine is to take a piece of code, and convert it so fast, optimizing code and it can be interpreted by the browser.&lt;/p&gt;

&lt;p&gt;In each JavaScript engine has your own particular version followed by ECMAScript. There are many different engines world-wide, each one is designed to work. &lt;br&gt;
i.e.: Node.js is one of the awesome and known engines. Node otherwise, is good for runtime environment. And so on...&lt;/p&gt;

&lt;p&gt;Those engines and a huge variety are available to analyze, parse, and execute client-side code or server-side (Node.js) in every browser version.&lt;/p&gt;

&lt;p&gt;I hope you all enjoyed,&lt;br&gt;
thanks for reading!&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>engine</category>
      <category>webdev</category>
    </item>
    <item>
      <title>How Try/catch works?</title>
      <dc:creator>Gabriel Nunes</dc:creator>
      <pubDate>Fri, 05 Mar 2021 03:42:50 +0000</pubDate>
      <link>https://dev.to/gabrielnunes12/how-try-catch-works-47nd</link>
      <guid>https://dev.to/gabrielnunes12/how-try-catch-works-47nd</guid>
      <description>&lt;p&gt;Look this following image&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fz2q0etuet6brzbd6bp70.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fz2q0etuet6brzbd6bp70.png" alt="image" width="481" height="267"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;According to the image, it will first try the try block, if it finds an error, it will go to the catch block, passing an argument (error or err or even e) are the parameters most often used by developers, where it passes the error's StackTrace.&lt;br&gt;
You can pass a different stacktrace, if you notice in the else statement there is a "throw new Error()"; this is the one that will be responsible for giving a custom stacktrace.&lt;/p&gt;

&lt;p&gt;Anyway, I hope I clarified your questions about Try/Catch statements, and this is my first post here ;)&lt;/p&gt;

&lt;p&gt;See you&lt;/p&gt;

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