<?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: Kiran💙🖤</title>
    <description>The latest articles on DEV Community by Kiran💙🖤 (@ikiranpun).</description>
    <link>https://dev.to/ikiranpun</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%2F225870%2Fda8fd718-30c6-4e3a-aaba-d2ec9d27b642.jpg</url>
      <title>DEV Community: Kiran💙🖤</title>
      <link>https://dev.to/ikiranpun</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ikiranpun"/>
    <language>en</language>
    <item>
      <title>Best books for learning to create formal test suites ??</title>
      <dc:creator>Kiran💙🖤</dc:creator>
      <pubDate>Sun, 06 Oct 2019 16:35:08 +0000</pubDate>
      <link>https://dev.to/ikiranpun/best-book-for-learning-to-create-formal-test-suites-446o</link>
      <guid>https://dev.to/ikiranpun/best-book-for-learning-to-create-formal-test-suites-446o</guid>
      <description>&lt;p&gt;Hi, &lt;br&gt;
Can anyone please suggest me good books to help me learn to create formal test suites? TT &lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fi.imgur.com%2F4s5aWvH.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fi.imgur.com%2F4s5aWvH.gif" alt="Alt text of image"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>testing</category>
      <category>books</category>
    </item>
    <item>
      <title>Day 6 </title>
      <dc:creator>Kiran💙🖤</dc:creator>
      <pubDate>Mon, 16 Sep 2019 18:12:31 +0000</pubDate>
      <link>https://dev.to/ikiranpun/day-6-365k</link>
      <guid>https://dev.to/ikiranpun/day-6-365k</guid>
      <description>&lt;p&gt;&lt;strong&gt;TIL&lt;/strong&gt; &lt;/p&gt;

&lt;p&gt;Difference between Object.create and function constructor &lt;/p&gt;

&lt;p&gt;Post that I personally found helpful :&lt;br&gt;
&lt;a href="https://medium.com/@jonathanvox01/understanding-the-difference-between-object-create-and-the-new-operator-b2a2f4749358"&gt;https://medium.com/@jonathanvox01/understanding-the-difference-between-object-create-and-the-new-operator-b2a2f4749358&lt;/a&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Day 5 </title>
      <dc:creator>Kiran💙🖤</dc:creator>
      <pubDate>Sun, 15 Sep 2019 17:43:01 +0000</pubDate>
      <link>https://dev.to/ikiranpun/day-5-5c3n</link>
      <guid>https://dev.to/ikiranpun/day-5-5c3n</guid>
      <description>&lt;p&gt;Skipped Friday and Saturday @_@ &lt;/p&gt;

&lt;p&gt;&lt;b&gt;TIL&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;The prototype chain in the console &lt;/p&gt;

&lt;p&gt;object.create &lt;/p&gt;

&lt;p&gt;The video explained about how function constructor is different from object.create. I didn't quite get it. I will re-watch the video tomorrow when I'm more fresher. &lt;/p&gt;

</description>
      <category>beginners</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Day 4 </title>
      <dc:creator>Kiran💙🖤</dc:creator>
      <pubDate>Thu, 12 Sep 2019 18:23:21 +0000</pubDate>
      <link>https://dev.to/ikiranpun/day-4-4mh0</link>
      <guid>https://dev.to/ikiranpun/day-4-4mh0</guid>
      <description>&lt;p&gt;I reached the 5th section of the JS online course . The section is called Advance JS. &lt;/p&gt;

&lt;p&gt;&lt;b&gt;TIL&lt;/b&gt; &lt;/p&gt;

&lt;p&gt;*Objects in Java script &lt;br&gt;
*OOP &lt;br&gt;
*constructors and instances &lt;br&gt;
*Inheritance in general &lt;br&gt;
*Inheritance in JS - Prototypes and prototype chain &lt;/p&gt;

&lt;p&gt;I had to re-watch the same explanation several times to grasp the idea of prototype property. &lt;br&gt;
 &lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--DJyifsNe--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://media3.giphy.com/media/3o7btPCcdNniyf0ArS/giphy.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--DJyifsNe--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://media3.giphy.com/media/3o7btPCcdNniyf0ArS/giphy.gif" alt="Alt text of image"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It was made much clearer when the instructor explained it again by teaching us how to create a function constructer. &lt;/p&gt;

&lt;p&gt;The explanation made  it clear that if we didn’t have the prototype property , we would have the inherited function  of a constructor in every instances created using the constructor. However , using the prototype property we can use the function without having duplication of functions. &lt;br&gt;
( This is what I understood , Please correct me if I’m wrong)&lt;/p&gt;

&lt;p&gt;It was also explained how the &lt;strong&gt;new&lt;/strong&gt; operator works. &lt;/p&gt;

</description>
      <category>javascript</category>
      <category>beginners</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>Day3 </title>
      <dc:creator>Kiran💙🖤</dc:creator>
      <pubDate>Wed, 11 Sep 2019 16:15:38 +0000</pubDate>
      <link>https://dev.to/ikiranpun/day3-4lba</link>
      <guid>https://dev.to/ikiranpun/day3-4lba</guid>
      <description>&lt;p&gt;&lt;b&gt;TIL : &lt;/b&gt;&lt;/p&gt;

&lt;p&gt;From challenge #2 : &lt;br&gt;
I tried to solve yesterday's second challenge in another way. For that I added a new button in the HTML . I placed the new line for the button under the bundle js ,so the element wasn't loaded when the bundle js executed so I got the error : "Cannot read property 'addEventListener' of null" &lt;/p&gt;

&lt;p&gt;I found it to be very interesting as I have near to no knowledge of HTLM. Knowing this really made me feel like I learnt something new today. &lt;/p&gt;

&lt;p&gt;From Challenge #3 : &lt;br&gt;
Was to add another dice in the Pig game and if any of those two dice rolled "1" , we need to reset the user's current holding score. &lt;br&gt;
This was really fun.🌟&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>javascript</category>
    </item>
    <item>
      <title>#Day2</title>
      <dc:creator>Kiran💙🖤</dc:creator>
      <pubDate>Tue, 10 Sep 2019 17:09:16 +0000</pubDate>
      <link>https://dev.to/ikiranpun/day2-1fa5</link>
      <guid>https://dev.to/ikiranpun/day2-1fa5</guid>
      <description>&lt;p&gt;Skipped a day yesterday. &lt;br&gt;
&lt;b&gt;Today : &lt;/b&gt;&lt;br&gt;
I completed 1 challenge from my Java Script course. &lt;br&gt;
I'm currently making a Pig game using JS. &lt;br&gt;
In this challenge I had to change how the scores change when the use rolls two consecutive 6s. &lt;br&gt;
&lt;b&gt;edit : &lt;/b&gt;&lt;br&gt;
completed another challenge : &lt;br&gt;
Where I had to take input from a user and have it as the winning score for the Pig game.&lt;/p&gt;

&lt;p&gt;If anyone is curious, the course I'm following is "The Complete JavaScript Course 2019: Build Real Projects!" on Udemy.&lt;/p&gt;

&lt;h1&gt;
  
  
  Babystep
&lt;/h1&gt;

</description>
      <category>beginners</category>
      <category>javascript</category>
    </item>
    <item>
      <title>#Day1 </title>
      <dc:creator>Kiran💙🖤</dc:creator>
      <pubDate>Sun, 08 Sep 2019 17:24:56 +0000</pubDate>
      <link>https://dev.to/ikiranpun/day1-2gk3</link>
      <guid>https://dev.to/ikiranpun/day1-2gk3</guid>
      <description>&lt;p&gt;TIL &lt;br&gt;
State variable &lt;br&gt;
Event Loop&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>javascript</category>
    </item>
    <item>
      <title>The Beginning </title>
      <dc:creator>Kiran💙🖤</dc:creator>
      <pubDate>Sun, 08 Sep 2019 14:59:38 +0000</pubDate>
      <link>https://dev.to/ikiranpun/the-beginning-4jjp</link>
      <guid>https://dev.to/ikiranpun/the-beginning-4jjp</guid>
      <description>&lt;p&gt;The first chapter of establishing a habit to code each day ! &lt;br&gt;
I can do this. &lt;/p&gt;

&lt;h1&gt;
  
  
  Day1
&lt;/h1&gt;

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