<?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: Nimal Anand</title>
    <description>The latest articles on DEV Community by Nimal Anand (@nimal_anand_51d0f3a2f1659).</description>
    <link>https://dev.to/nimal_anand_51d0f3a2f1659</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%2F3852533%2F2544a3a0-3129-47ef-b0ad-a0a4580c2ed5.png</url>
      <title>DEV Community: Nimal Anand</title>
      <link>https://dev.to/nimal_anand_51d0f3a2f1659</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nimal_anand_51d0f3a2f1659"/>
    <language>en</language>
    <item>
      <title>conditional statements</title>
      <dc:creator>Nimal Anand</dc:creator>
      <pubDate>Sat, 16 May 2026 10:05:23 +0000</pubDate>
      <link>https://dev.to/nimal_anand_51d0f3a2f1659/conditional-statements-29bd</link>
      <guid>https://dev.to/nimal_anand_51d0f3a2f1659/conditional-statements-29bd</guid>
      <description>&lt;p&gt;IN Java script we use if and else for conditional statements.&lt;br&gt;
we declare a varaiable with a initial value  and we give a condition using if ,If the condition is fullfilled the contents of operations inside the brackets would be executed and if  the conditions is failed then else would be executed.&lt;br&gt;
let i=0&lt;br&gt;
if i&amp;lt;=10{&lt;br&gt;
console.log(i)&lt;br&gt;
i++&lt;br&gt;
}else&lt;br&gt;
{&lt;br&gt;
exit&lt;br&gt;
}.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Variable declaration</title>
      <dc:creator>Nimal Anand</dc:creator>
      <pubDate>Sat, 16 May 2026 09:57:44 +0000</pubDate>
      <link>https://dev.to/nimal_anand_51d0f3a2f1659/variable-declaration-4a77</link>
      <guid>https://dev.to/nimal_anand_51d0f3a2f1659/variable-declaration-4a77</guid>
      <description>&lt;p&gt;we use three identifiers in java script var,let,Const.&lt;br&gt;
var means variable. By using var we can declare redeclare and reinitiate values for a variable .&lt;br&gt;
example: var x =5&lt;br&gt;
          var x=6&lt;br&gt;
           x =7&lt;br&gt;
if we use let and declare a variable then we can declare it once and we cant redeclare it again but we can reinitiate it again.&lt;br&gt;
example: let x =5&lt;br&gt;
             x=6&lt;br&gt;
if we use const we can declare the variable only once we cant redeclare and reinitiate it again.we declare the data also while declaring the const.&lt;br&gt;
     const m=5.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Javascript variables</title>
      <dc:creator>Nimal Anand</dc:creator>
      <pubDate>Sat, 16 May 2026 09:44:39 +0000</pubDate>
      <link>https://dev.to/nimal_anand_51d0f3a2f1659/javascript-variables-38co</link>
      <guid>https://dev.to/nimal_anand_51d0f3a2f1659/javascript-variables-38co</guid>
      <description>&lt;p&gt;variable types:&lt;br&gt;
1)var 2)let 3)const&lt;br&gt;
var:It denotes the variable which we intend to introduce.For example variable equals 5. If we use var it can be reassigned and reinitialised meaning we can call the variable name again and we can also change value of the variable as well..&lt;/p&gt;

&lt;p&gt;let:if we use let and introduce a variable.it cant be reassigned but the value can be reinitialised meaning we can give another value for the same variable.&lt;/p&gt;

&lt;p&gt;const:Meaning of const is constant. if we introduce a variable using const it cant be reassigned or reinitialise.&lt;/p&gt;

&lt;p&gt;Arithmatic operator:&lt;br&gt;
arithmatic operators are used for doing mathematical operations like addition subtraction multiplication division.&lt;/p&gt;

&lt;p&gt;Addition operator(+) It performs two operations like adding numbers and doing concardination.It adds the numbers and on the other hand it concordinates the given data types whatever it maybe&lt;/p&gt;

&lt;p&gt;Subtraction(-) It is used to perform subtraction between two variables which is declared earlier&lt;/p&gt;

&lt;p&gt;Multiplication(*)It is used to perform multiplication between two variables.&lt;/p&gt;

&lt;p&gt;Division It is used to perform division between two variables.we use slash(/) to get the quotient value and we use modulo (%) to get the remainder.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Balance in life.</title>
      <dc:creator>Nimal Anand</dc:creator>
      <pubDate>Tue, 31 Mar 2026 01:53:19 +0000</pubDate>
      <link>https://dev.to/nimal_anand_51d0f3a2f1659/balance-in-life-19de</link>
      <guid>https://dev.to/nimal_anand_51d0f3a2f1659/balance-in-life-19de</guid>
      <description>&lt;p&gt;Life is full of memories just close your eyes and think of a pleasant memory that comes in your mind.In this tech world although we have numerous technologies to do our work faster and make our life easier, all we say at the end of day is we are short of time. Everyone wanted to be successful in their career and wanted to spend good quality time for themself and for family as well, but how much time we are able to allocate in reality. we hardly don't have time to have food with our family or to have tea with our friends unless they are colleagues. But life goes on and on. Most of us are capable of doing multitasking in our job but in this case almost everyone fails. Just imagine about the last vacation or a short trip you went with your friends or family where u didn't attend any office meetings on zoom calls or phone calls. Report suggests that work life balance in few European countries is very much balanced and better when compared to India. we wanted to adapt everything from the western countries right from food, culture and clothing why can't we and our companies adapt this work life balance from them? &lt;/p&gt;

</description>
      <category>career</category>
      <category>mentalhealth</category>
      <category>productivity</category>
      <category>watercooler</category>
    </item>
  </channel>
</rss>
