<?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: Louise Iyengar</title>
    <description>The latest articles on DEV Community by Louise Iyengar (@louisei).</description>
    <link>https://dev.to/louisei</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%2F542566%2Ff8670fdc-34e2-4d23-94e3-7d988f536df9.jpeg</url>
      <title>DEV Community: Louise Iyengar</title>
      <link>https://dev.to/louisei</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/louisei"/>
    <language>en</language>
    <item>
      <title>Scrimba's JavaScriptmas Challenges</title>
      <dc:creator>Louise Iyengar</dc:creator>
      <pubDate>Fri, 18 Dec 2020 04:38:23 +0000</pubDate>
      <link>https://dev.to/louisei/scrimba-s-javascriptmas-challenges-3cke</link>
      <guid>https://dev.to/louisei/scrimba-s-javascriptmas-challenges-3cke</guid>
      <description>&lt;p&gt;I'm not totally sure why I signed up for &lt;a href="https://scrimba.com/"&gt;Scrimba&lt;/a&gt;'s JavaScriptmas Challenges or even the Front-End Developer Career Path sequence I'm currently working on.&lt;/p&gt;

&lt;p&gt;I'm old for all this.  I won't tell you exactly how old, but I did watch the original moon landing from summer camp.  I'm old enough that friends from college are retiring and becoming grandparents.  And as for me, I'm feeling...ambitious.&lt;/p&gt;

&lt;p&gt;My programming career stalled out recently, and frankly, it has a number of times -- due to child-rearing, illness, insecurity.  I've been a COBOL programmer and a web developer in the early 90's. My head is full of historical experiences: handing in homework in the form of stacks of IBM cards, coding by hand and then fighting to get to the one terminal, 3270 terminal emulators, Y2K, OS/2, flying toasters, formatting web pages using tables, browser wars.  &lt;/p&gt;

&lt;p&gt;Recently, for some reason, I got on an email list, or saw an ad, and I started working on Front-End courses on Scrimba, which I've really enjoyed for many reasons.  Then, I signed up for Scrimba's JavaScriptmas Challenges in December, a contest of 24 daily JavaScript challenges, running from Dec 1 - Dec 24.&lt;/p&gt;

&lt;p&gt;And here's what happened: I woke up every morning excited to see the day's challenge, excited to show my work on one of Scrimba's Discord channels to see how others had more creative solutions or might have even liked my solution. I was learning and discussing ideas and code.  It made my day!&lt;/p&gt;

&lt;p&gt;I'm not quite sure what my career goals are or should be at this point.  But I do know this: if you wake up every morning excited to be learning, discussing, and doing Scrimba's Front-End coding courses and challenges, then at least you know you might be on the right path to where you should end up.&lt;/p&gt;

&lt;p&gt;These are my solutions to the JavaScriptmas challenges:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://scrimba.com/scrim/coa4948ed8829ad2fd955ef8a"&gt;Day 24 - Agility Challenge&lt;/a&gt;&lt;br&gt;
&lt;a href="https://scrimba.com/scrim/co69644d8ae42fa4de94caffc"&gt;Day 23 - Twitter input&lt;/a&gt;&lt;br&gt;
&lt;a href="https://scrimba.com/scrim/co9f141a7a493fbfb458add38"&gt;Day 22 - Extract Matrix Column&lt;/a&gt;&lt;br&gt;
&lt;a href="https://scrimba.com/scrim/coaaa49b289719b272c222b1f"&gt;Day 21 - Sum of Two&lt;/a&gt;&lt;br&gt;
&lt;a href="https://scrimba.com/scrim/co8504cdba9da182279026eb2"&gt;Day 20 - Domain Type&lt;/a&gt;&lt;br&gt;
&lt;a href="https://scrimba.com/scrim/co5a94a068b79c935aebee8f5"&gt;Day 19 - Alphabet sequence&lt;/a&gt;&lt;br&gt;
&lt;a href="https://scrimba.com/scrim/coa2f48f0b95fc39031e030aa"&gt;Day 18 - Previous smaller numbers array&lt;/a&gt;&lt;br&gt;
&lt;a href="https://scrimba.com/scrim/co2fd41e3952f6d6bd3e08226"&gt;Day 17 - Unique characters in a string&lt;/a&gt;&lt;br&gt;
&lt;a href="https://scrimba.com/scrim/cob2a4ed1a50ccadbc047b2aa"&gt;Day 16 - Insert Dashes in a string&lt;/a&gt;&lt;br&gt;
&lt;a href="https://scrimba.com/scrim/coed442ca94ad39f8241bc7b1"&gt;Day 15 - Picture Carousel&lt;/a&gt;&lt;br&gt;
&lt;a href="https://scrimba.com/scrim/cob594db3b0bf283ed03a139a"&gt;Day 14 - Largest Difference between adjacent number in an array&lt;/a&gt;&lt;br&gt;
&lt;a href="https://scrimba.com/scrim/co41a4a1c8366a579d41b7eae"&gt;Day 13 - Extract Kth number from array&lt;/a&gt;&lt;br&gt;
**Here's what I posted first before I got a sound talking-to on Discord.  But my solution passed the test suite!  Ten thousand imaginary bonus points for an array that will cause my initial code to fail this challenge (remove the Kth element in an array):&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nx"&gt;extractEachKth&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;nums&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;Kth&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="nx"&gt;nums&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;filter&lt;/span&gt;&lt;span class="p"&gt;((&lt;/span&gt;&lt;span class="nx"&gt;num&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;index&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="p"&gt;((&lt;/span&gt;&lt;span class="nx"&gt;index&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;%&lt;/span&gt; &lt;span class="nx"&gt;Kth&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="nx"&gt;num&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt;
    &lt;span class="p"&gt;})&lt;/span&gt;                     
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://scrimba.com/scrim/co7b94cf99f9eb9e61207ccc3"&gt;Day 12 - Check for valid time&lt;/a&gt;&lt;br&gt;
&lt;a href="https://scrimba.com/scrim/cod5f4a5b8a8efd2e2a324137"&gt;Day 11 - Lowest number of jumps between numbers in array&lt;/a&gt;&lt;br&gt;
&lt;a href="https://scrimba.com/scrim/co28a4b269d6541b360656c87"&gt;Day 10 - Largest product of adjacent values in array&lt;/a&gt;&lt;br&gt;
&lt;a href="https://scrimba.com/scrim/co727443db1bf5b71d123a362"&gt;Day 9 - Sum of odd Fibonacci numbers&lt;/a&gt;&lt;br&gt;
  **This isn't a slick solution, but an efficient way to solve this problem, I think.&lt;br&gt;
&lt;a href="https://scrimba.com/scrim/co4ce4ae18728b13379fa6485"&gt;Day 8 - Roll Dice&lt;/a&gt;&lt;br&gt;
  **Ok, it's not Dave Alger's amazing rolling dice, but I kind of like my work here, given my nascent CSS skills, especially the JS creation of the dice.&lt;br&gt;
&lt;a href="https://scrimba.com/learn/adventcalendar/note-at-1-09-coecb4ab886f00d9dfbe1b906"&gt;Day 7 - Calculate vowels/consonants in string&lt;/a&gt;&lt;br&gt;
&lt;a href="https://scrimba.com/learn/adventcalendar/note-at-0-37-co8e444d18b8413f4c7cde7d8"&gt;Day 6 - Sort array by length of string&lt;/a&gt;&lt;br&gt;
&lt;a href="https://scrimba.com/learn/adventcalendar/note-at-0-56-coc734568b1d3617d6a5ead46"&gt;Day 5 - Reverse string without array method&lt;/a&gt;&lt;br&gt;
&lt;a href="https://scrimba.com/scrim/co7e24966be7e12ef8f8a2b6f"&gt;Day 4 - Century from year&lt;/a&gt;&lt;br&gt;
&lt;a href="https://scrimba.com/scrim/coab14f92b383303a4bb621d8"&gt;Day 3 - Chunky Monkey&lt;/a&gt;&lt;br&gt;
&lt;a href="https://scrimba.com/scrim/co3fd4e1fac55c4743fe1062a"&gt;Day 2 - Deposit profit&lt;/a&gt;&lt;br&gt;
&lt;a href="https://scrimba.com/scrim/co10c4221b94ae5a49cb7b62e"&gt;Day 1 - Candies&lt;/a&gt;&lt;/p&gt;

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