<?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: Kapgeradok</title>
    <description>The latest articles on DEV Community by Kapgeradok (@geraldkaparo).</description>
    <link>https://dev.to/geraldkaparo</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%2F932099%2Ff8905c38-8c2c-42e5-9093-3fdf280b8e59.jpeg</url>
      <title>DEV Community: Kapgeradok</title>
      <link>https://dev.to/geraldkaparo</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/geraldkaparo"/>
    <language>en</language>
    <item>
      <title>The short-form of if else statement</title>
      <dc:creator>Kapgeradok</dc:creator>
      <pubDate>Sun, 25 Sep 2022 16:14:13 +0000</pubDate>
      <link>https://dev.to/geraldkaparo/the-short-form-of-if-else-statement-2m8i</link>
      <guid>https://dev.to/geraldkaparo/the-short-form-of-if-else-statement-2m8i</guid>
      <description>&lt;h2&gt;
  
  
  The short form of if else statement as used in JavaScript
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;// here is a short-form of if else statement:
function Major(Engineering){
    return Engineering === 'Software Engineering' ? 
    "It's a course of heroes, You can be proud of!" :
    `Which type of ${Engineering}?`;
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>switch case of if, if else and else as default</title>
      <dc:creator>Kapgeradok</dc:creator>
      <pubDate>Sun, 25 Sep 2022 15:57:48 +0000</pubDate>
      <link>https://dev.to/geraldkaparo/switch-case-of-if-if-else-and-else-as-default-j6b</link>
      <guid>https://dev.to/geraldkaparo/switch-case-of-if-if-else-and-else-as-default-j6b</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;_**//switch case of if, if else and else as default **_
function Major(Engineering){
    switch(Engineering){
        case 'Software Engineering':
            return 'Its a course of heroes, You can be proud of!' 
        case 'Cevil Engineering' :
            return 'Oops! that deals with construction!'
        default : 
            return `Which type of ${Engineering}?`
    }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>The use of if else statement in JavaScript</title>
      <dc:creator>Kapgeradok</dc:creator>
      <pubDate>Sun, 25 Sep 2022 15:29:08 +0000</pubDate>
      <link>https://dev.to/geraldkaparo/the-use-of-if-else-statement-in-javascript-36a4</link>
      <guid>https://dev.to/geraldkaparo/the-use-of-if-else-statement-in-javascript-36a4</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;function Major(Engineering){
    if(Engineering === 'Software Engineering'){
        return'Its a course of heroes, You can be proud of!';
        }
    else if(typeof Engineering === String){
        return `Which type of ${Engineering}?`
        }
    else
        {
            return'please parse in the type of Engineering for this case';
        }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>Gerald-portfolio</title>
      <dc:creator>Kapgeradok</dc:creator>
      <pubDate>Sun, 25 Sep 2022 11:10:38 +0000</pubDate>
      <link>https://dev.to/geraldkaparo/gerald-portfolio-44g0</link>
      <guid>https://dev.to/geraldkaparo/gerald-portfolio-44g0</guid>
      <description>&lt;p&gt;&lt;a href="https://gerald-kaparo.github.io/Portfolio-Gerald/"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Greetings</title>
      <dc:creator>Kapgeradok</dc:creator>
      <pubDate>Sun, 25 Sep 2022 11:09:51 +0000</pubDate>
      <link>https://dev.to/geraldkaparo/greetings-1oa3</link>
      <guid>https://dev.to/geraldkaparo/greetings-1oa3</guid>
      <description>&lt;p&gt;hello world&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
