<?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: Chandru</title>
    <description>The latest articles on DEV Community by Chandru (@candyx3).</description>
    <link>https://dev.to/candyx3</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4071449%2F3771e142-2e37-48ec-81a0-b32cb9c6b6d2.png</url>
      <title>DEV Community: Chandru</title>
      <link>https://dev.to/candyx3</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/candyx3"/>
    <language>en</language>
    <item>
      <title>JavaScript Functions: A Simple Explanation</title>
      <dc:creator>Chandru</dc:creator>
      <pubDate>Wed, 02 Sep 2026 05:34:39 +0000</pubDate>
      <link>https://dev.to/candyx3/javascript-functions-a-simple-explanation-3ih2</link>
      <guid>https://dev.to/candyx3/javascript-functions-a-simple-explanation-3ih2</guid>
      <description>&lt;p&gt;While learning JavaScript, one topic that I found really important was functions.&lt;/p&gt;

&lt;p&gt;A function is basically a block of code that we can write once and use whenever we need it.&lt;/p&gt;

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

&lt;p&gt;function greet() {&lt;br&gt;
  console.log("Hello!");&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;We can run the function by calling it:&lt;/p&gt;

&lt;p&gt;greet();&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Functions with Parameters&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Sometimes we want to give some information to a function. That's where parameters come in.&lt;/p&gt;

&lt;p&gt;function greet(name) {&lt;br&gt;
  console.log("Hello " + name);&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;Now we can pass different names when calling the function.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Return&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A function can also give a value back using return.&lt;/p&gt;

&lt;p&gt;function add(a, b) {&lt;br&gt;
  return a + b;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;We can then store the result in a variable and use it wherever we need.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why are functions useful?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Without functions, we might end up writing the same code again and again.&lt;/p&gt;

&lt;p&gt;Functions help us:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Reuse code&lt;/li&gt;
&lt;li&gt;Keep code organized&lt;/li&gt;
&lt;li&gt;Avoid repetition&lt;/li&gt;
&lt;li&gt;Make programs easier to understand&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The main thing I learned is that functions are not just about writing code in a different format. They help us break a bigger problem into smaller, reusable pieces.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>learning</category>
      <category>beginners</category>
      <category>webdev</category>
    </item>
    <item>
      <title>4 JavaScript Things I Learned Recently</title>
      <dc:creator>Chandru</dc:creator>
      <pubDate>Tue, 01 Sep 2026 05:56:35 +0000</pubDate>
      <link>https://dev.to/candyx3/4-javascript-things-i-learned-recently-19f0</link>
      <guid>https://dev.to/candyx3/4-javascript-things-i-learned-recently-19f0</guid>
      <description>&lt;p&gt;While learning JavaScript, I came across a few things that I had seen before but didn't fully understand: ternary, switch, break, and continue.&lt;/p&gt;

&lt;p&gt;After trying them with small examples, they started making more sense.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Ternary&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The ternary operator is basically a short way of writing if-else.&lt;/p&gt;

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

&lt;p&gt;let result = age &amp;gt;= 18 ? "Adult" : "Minor";&lt;/p&gt;

&lt;p&gt;It is useful when the condition is simple and you want to keep the code short.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Switch&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Switch is useful when you need to check one value against different options.&lt;/p&gt;

&lt;p&gt;For example, if we want to check the day:&lt;/p&gt;

&lt;p&gt;switch (day) {&lt;br&gt;
  case "Monday": console.log("Start");&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;We can add more cases depending on what we need.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Break&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Break is used when we want to stop a loop.&lt;/p&gt;

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

&lt;p&gt;if (i === 5) break;&lt;/p&gt;

&lt;p&gt;When the condition is true, the loop stops there.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Continue&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Continue is different from break.&lt;/p&gt;

&lt;p&gt;It skips the current iteration but allows the loop to keep running.&lt;/p&gt;

&lt;p&gt;if (i === 5) continue;&lt;/p&gt;

&lt;p&gt;So, the way I remember them is:&lt;/p&gt;

&lt;p&gt;Ternary → shorter if-else&lt;/p&gt;

&lt;p&gt;Switch → different cases&lt;/p&gt;

&lt;p&gt;Break → stop&lt;/p&gt;

&lt;p&gt;Continue → skip and move on&lt;/p&gt;

&lt;p&gt;These are small things, but understanding them makes JavaScript a little easier to work with.&lt;/p&gt;

&lt;p&gt;I'm still learning, but I've found that writing small examples is much better than just reading about the syntax.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>javascript</category>
      <category>learning</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>JavaScript Conditions and Loops: A Simple Explanation</title>
      <dc:creator>Chandru</dc:creator>
      <pubDate>Mon, 31 Aug 2026 05:29:52 +0000</pubDate>
      <link>https://dev.to/candyx3/javascript-conditions-and-loops-a-simple-explanation-2ada</link>
      <guid>https://dev.to/candyx3/javascript-conditions-and-loops-a-simple-explanation-2ada</guid>
      <description>&lt;p&gt;When I started learning JavaScript, conditions and loops were two topics I came across pretty early.&lt;/p&gt;

&lt;p&gt;They may look confusing at first, but the idea is actually simple.&lt;/p&gt;

&lt;p&gt;Conditions are used when we want JavaScript to make a decision. For example, if a user is logged in, we can show their profile. If not, we can ask them to log in.&lt;/p&gt;

&lt;p&gt;if (isLoggedIn) {&lt;br&gt;
  console.log("Welcome!");&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;We can also use else when there are two possible situations.&lt;/p&gt;

&lt;p&gt;Loops are used when we want to repeat something without writing the same code again and again.&lt;/p&gt;

&lt;p&gt;For example, if we want to print numbers from 1 to 5:&lt;/p&gt;

&lt;p&gt;for (let i = 1; i &amp;lt;= 5; i++) {&lt;br&gt;
  console.log(i);&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;There are different types of loops in JavaScript, like for and while. Which one we use depends on what we are trying to do.&lt;/p&gt;

&lt;p&gt;The main thing I learned is that conditions help us make decisions, while loops help us repeat tasks.&lt;/p&gt;

&lt;p&gt;Once you understand these two concepts, writing JavaScript becomes a lot easier because you'll use them in many real projects.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>beginners</category>
      <category>webdev</category>
      <category>learning</category>
    </item>
    <item>
      <title>Agile Methodology Explained: A Beginner’s Guide to Agile</title>
      <dc:creator>Chandru</dc:creator>
      <pubDate>Tue, 11 Aug 2026 11:43:22 +0000</pubDate>
      <link>https://dev.to/candyx3/agile-methodology-explained-a-beginners-guide-to-agile-46il</link>
      <guid>https://dev.to/candyx3/agile-methodology-explained-a-beginners-guide-to-agile-46il</guid>
      <description>&lt;p&gt;Agile Methodology Explained in Simple Words&lt;/p&gt;

&lt;p&gt;When I first heard the term Agile methodology, I thought it was just another technical word I had to remember.&lt;/p&gt;

&lt;p&gt;But after understanding it, I realized the basic idea is actually pretty simple.&lt;/p&gt;

&lt;p&gt;Agile is a way of developing software where you build things step by step, take feedback, and make changes along the way.&lt;/p&gt;

&lt;p&gt;So, how does it work?&lt;/p&gt;

&lt;p&gt;Let's say a team is building a food delivery app.&lt;/p&gt;

&lt;p&gt;Instead of developing the whole application and showing it to the customer after a few months, the team breaks the work into smaller parts.&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;First, they work on login and registration.&lt;/li&gt;
&lt;li&gt;Then they work on restaurant search.&lt;/li&gt;
&lt;li&gt;After that, they add the cart and payment.&lt;/li&gt;
&lt;li&gt;Finally, they work on order tracking and other features.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The team keeps testing and getting feedback throughout the process.&lt;/p&gt;

&lt;p&gt;This is useful because requirements can change. Maybe the customer wants a different feature or the team finds a problem. With Agile, it is easier to adjust things instead of changing the whole project at the end.&lt;/p&gt;

&lt;p&gt;What is a Sprint?&lt;/p&gt;

&lt;p&gt;A Sprint is simply a short period where the team focuses on a particular set of tasks.&lt;/p&gt;

&lt;p&gt;For example, in a two-week Sprint, the team might decide to complete the login system.&lt;/p&gt;

&lt;p&gt;At the end of the Sprint, the team checks what was completed, what went wrong, and what needs to be done next.&lt;/p&gt;

&lt;p&gt;You might also hear terms like Backlog, Daily Stand-up, Sprint Review, and Retrospective when working with Agile teams.&lt;/p&gt;

&lt;p&gt;You don't need to memorize all of them immediately. Once you see how an Agile team works, these terms start making more sense.&lt;/p&gt;

&lt;p&gt;Agile and Scrum are not the same.&lt;/p&gt;

&lt;p&gt;This confused me at first too.&lt;/p&gt;

&lt;p&gt;Agile is the overall approach, while Scrum is one of the frameworks used to follow Agile principles.&lt;/p&gt;

&lt;p&gt;Why do companies use Agile?&lt;/p&gt;

&lt;p&gt;The main reason is flexibility.&lt;/p&gt;

&lt;p&gt;Software projects rarely go exactly according to the original plan. Requirements change, bugs appear, and users give new feedback.&lt;/p&gt;

&lt;p&gt;Agile makes it easier to deal with these changes because the team works in smaller cycles instead of waiting until the very end.&lt;/p&gt;

&lt;p&gt;Final thoughts&lt;/p&gt;

&lt;p&gt;You don't need to know every Agile term to understand Agile.&lt;/p&gt;

&lt;p&gt;The main idea is:&lt;/p&gt;

&lt;p&gt;Build → Test → Get feedback → Improve → Repeat&lt;/p&gt;

&lt;p&gt;That's pretty much Agile at its core.&lt;/p&gt;

&lt;p&gt;If you're just starting out in software development, learning the basics of Agile is useful because you'll probably come across it in real-world projects and job descriptions.&lt;/p&gt;

</description>
      <category>agile</category>
      <category>softwaredevelopment</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
