<?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: Vignesh . M</title>
    <description>The latest articles on DEV Community by Vignesh . M (@vignesh_m_4971f2f8dfa54).</description>
    <link>https://dev.to/vignesh_m_4971f2f8dfa54</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%2F3199021%2F3c86267a-7a82-46ac-a43c-7c6d476db9a3.jpg</url>
      <title>DEV Community: Vignesh . M</title>
      <link>https://dev.to/vignesh_m_4971f2f8dfa54</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vignesh_m_4971f2f8dfa54"/>
    <language>en</language>
    <item>
      <title>TASK</title>
      <dc:creator>Vignesh . M</dc:creator>
      <pubDate>Thu, 23 Oct 2025 08:11:25 +0000</pubDate>
      <link>https://dev.to/vignesh_m_4971f2f8dfa54/task-56cc</link>
      <guid>https://dev.to/vignesh_m_4971f2f8dfa54/task-56cc</guid>
      <description>&lt;ol&gt;
&lt;li&gt;Write a program to store 5 names in an ArrayList and print them.
//Write a program to store 5 names in an ArrayList and print them.
package StoreData;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;import java.util.ArrayList;&lt;/p&gt;

&lt;p&gt;public class StoreData {&lt;br&gt;
    public static void empelooyName(ArrayList names) {&lt;br&gt;
        names.add("Vicky");&lt;br&gt;
        names.add("Rajesh");&lt;br&gt;
        names.add("Ravi");&lt;br&gt;
        names.add("Mathi");&lt;br&gt;
        names.add("Sathish");&lt;br&gt;
        System.out.println("EmplooyNames in the ArrayList:");&lt;br&gt;
        for (String name : names) {&lt;br&gt;
            System.out.println(name);&lt;br&gt;
        }&lt;br&gt;
    }&lt;br&gt;
     public static void main(String[] args) { &lt;br&gt;
            ArrayList myNames = new ArrayList&amp;lt;&amp;gt;();&lt;br&gt;
            empelooyName(myNames);&lt;br&gt;
        }&lt;br&gt;
    }&lt;/p&gt;

&lt;p&gt;output:&lt;br&gt;
EmplooyNames in the ArrayList:&lt;br&gt;
Vicky&lt;br&gt;
Rajesh&lt;br&gt;
Ravi&lt;br&gt;
Mathi&lt;br&gt;
Sathish&lt;/p&gt;

</description>
      <category>problem</category>
      <category>and</category>
      <category>siolution</category>
      <category>benningerlevel</category>
    </item>
    <item>
      <title>DOM CL - 1</title>
      <dc:creator>Vignesh . M</dc:creator>
      <pubDate>Mon, 15 Sep 2025 09:36:22 +0000</pubDate>
      <link>https://dev.to/vignesh_m_4971f2f8dfa54/dom-cl-1-2j31</link>
      <guid>https://dev.to/vignesh_m_4971f2f8dfa54/dom-cl-1-2j31</guid>
      <description>&lt;p&gt;DAY 1&lt;/p&gt;

&lt;p&gt;WHAT IS DOM ?&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;DOM IS PROGRAMING INTERFACE&lt;/li&gt;
&lt;li&gt;IN DOM N-NUMBER OF IN-BULID FUNCTION IS THERE&lt;/li&gt;
&lt;li&gt;WITH THE HTML DOM ,JAVASCRIPT CAN ACCESS AND CHANGE ALL THE ELEMENTD OF AN HTML&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;WHAT IS HTML DOM ?&lt;br&gt;
WITH THE OBJECT MODEL ,JAVASCRIPT GET ALL THE POWER IT NEED TO CREADE DYNMIC HTMT.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcoh8k0lgk2xsp2xp09it.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcoh8k0lgk2xsp2xp09it.png" alt=" " width="486" height="266"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>JAVASCRIPT CL - 9</title>
      <dc:creator>Vignesh . M</dc:creator>
      <pubDate>Mon, 08 Sep 2025 06:48:35 +0000</pubDate>
      <link>https://dev.to/vignesh_m_4971f2f8dfa54/javascript-cl-9-fdn</link>
      <guid>https://dev.to/vignesh_m_4971f2f8dfa54/javascript-cl-9-fdn</guid>
      <description>&lt;p&gt;DAY -9&lt;/p&gt;

&lt;p&gt;// In javascript is a dianamic typeing so will given any datatype in a array and size is not fixed&lt;br&gt;&lt;br&gt;
//example :&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const arr = [10,vic,20,30,40];
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;//How print the array with different method&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; //first step : console.log(arr);//full arr data
        //secound : consle.log(arr[2]);//perticulor index data
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;//using WHILE loop :&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const arr =[20,46,66,12,33 ]
        let i = 0
        while(i&amp;lt;5){
            console.log(arr[i]);
            i++;
        }//output : 20,46,66,12,33

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

&lt;/div&gt;



&lt;p&gt;USING FOR LOOP&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; for(i = 0;i&amp;lt;arr.length;i++){
            console.log(arr[i]); 
        }//output : 20,46,66,12,33
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;using for-in loop &lt;br&gt;
for in loop will given the index&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; for(let array in arr){
            console.log(array);// show the index 
            console.log(arr[array]);//show the index value
             }//output : 0 1 2 3 4 
             //output : 20,46,66,12,33
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;//for of loop 
//for of will given the index value
for(let mar of arr){
    console.log(mar);

}//output:  20,46,66,12,33
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;//foreach loop&lt;br&gt;
//foreach is called a callbackfuction calling statement&lt;br&gt;
//foreach using function&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; arr.forEach(printmark);
    function printmark(arr) {
        console.log(arr);
        }
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;//foreach with function &lt;br&gt;
//arroy function is not a callback function .because arroy function is a similified of function only&lt;br&gt;
//foreach only runs forword only not backword&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;arr.forEach(marks =&amp;gt; {console.log(marks)
    });///output:  20,46,66,12,33
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>JAVASCRIPT CL - 8</title>
      <dc:creator>Vignesh . M</dc:creator>
      <pubDate>Sat, 06 Sep 2025 09:44:13 +0000</pubDate>
      <link>https://dev.to/vignesh_m_4971f2f8dfa54/javascript-cl-8-1h5d</link>
      <guid>https://dev.to/vignesh_m_4971f2f8dfa54/javascript-cl-8-1h5d</guid>
      <description>&lt;p&gt;DAY -8&lt;/p&gt;

&lt;p&gt;HOW TO CHANGE THE WHILE LOOP TO FOR LOOP FOR UNDERSTANDING &lt;/p&gt;

&lt;p&gt;SAMPLE WHILE LOOPING CODE:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let i=1;
        while(i&amp;lt;=5){
            console.log(i);
            i++

        }// OUTPUT 1 2 3 4 5
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;SAMPLE FOR LOOPING CODE:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;for(j=0;j&amp;lt;=5;j++){
            console.log(j);

        } //OUTPUT : 0 1 2 3 4 5
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;NEXT WILL DICUSS &lt;br&gt;
    1.ARROW FUNCTION&lt;br&gt;
    2.ARRAY&lt;br&gt;
    3.FOREACH&lt;/p&gt;

&lt;p&gt;ARROR FUNCTION:&lt;/p&gt;

&lt;p&gt;NORMAL FUNCTION CODE :&lt;br&gt;
 syntax for function&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;function functionname( variable){
        log.();
    }
    functionname(value)

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

&lt;/div&gt;



&lt;p&gt;NOW , WE CHANGE THE FUNCTION TO ARROW FUNCTION&lt;/p&gt;

&lt;p&gt;syntax for arrow function&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;()=&amp;gt;{ 
        log.("hi"); 
       }
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;IN ARROW FUNCTION WILL WRITE THE ONE LINE CODE curly braces IS NOR MANITAOR&lt;/p&gt;

&lt;p&gt;SAMPLE CODE :&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;()=&amp;gt; log.("HI");

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

&lt;/div&gt;



&lt;p&gt;1.WHY WILL USE NARROW FUNCTION ?&lt;br&gt;
    * NORROW FUNCTION ONLY USED TO SMILIFY THE FUNCTION ONLY.&lt;br&gt;
2.THEN WHY CALL ARROW FUNCTION ?&lt;br&gt;
     * CREAT ONE VARIABLE TO CALL THE ARROW FUNTION &lt;br&gt;
Syntax:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const variableName = () =&amp;gt; console.log("HI");
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;sample code&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;//arrow function
        const display = () =&amp;gt; console.log("hi");
        display() //  OUTPUT : hi

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

&lt;/div&gt;



&lt;p&gt;DIFFERENT BETWEEN HOISTED AND NON- HOISTED&lt;br&gt;
    * FUNCTION IS CALLED HOISTED .BECAUSE BEFORE DECLARECTION WILL USES THE FUNCTION NAME IS CALL HOISTED &lt;br&gt;
    * VARIABLES IS CALLED A NON-HOISTED .BECAUSE BEFORE DECLARECTION IS NOT WORKING .BECAUSE IF  DECLARE THE VARIABLE NAME THEN ONLY THE MEMORY WILL CREATE SO VARIABLE IS CALLED NON-HOISED&lt;br&gt;
 EXAMPLE CODE FOR NON-HOISTED&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;display() // VARIABLE
    const display = () =&amp;gt; console.log("hi"); // IF WE CALLED THE VARIABLE BEFORE MENCTION IS ACCORED ERROW 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;ARRAY:    &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;SET OF DATA STORED IN A SINGLE VARIABLE AND THE DATA WILL STORE IN A INDEX FORM . AND ARRAY WILL 0TH INDEX 
WHY WE WILL YOU ARRAY ?&lt;/li&gt;
&lt;li&gt;IN REAVLE WAORD WE STORE THE ONE STUDENT EXAM MARKS 
    TAM = 87
    ENG = 77
    MATH = 89
    SCI = 98
    SS  = 88&lt;/li&gt;
&lt;li&gt;IN THIS SUTIVATION WE WILL CERATE A MULTIPLE VARIABLES . SO SOVE THIS ISSUE TO WE USE THE ARRAY .
SO USING ARRAY SET OF PERTICULR DATA IN A STORED IN A SINGLE VARIIABLE &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;EXMPLE:&lt;br&gt;
        MARKS = [ 87 77 89 98 88] // THIS IS CALLED ARRAY&lt;/p&gt;

&lt;p&gt;IN JAVASCRIPT WILL WRITE THIS CODE &lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const marks = [ 87 77 89 98 88] // 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;p&gt;SAMPLE CODE :&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const marks = [2,3,4,5,6];
        console.log(marks[3]);// OUTPUT : 5
        console.log(marks);//Array(5) [ 2, 3, 4, 5, 6 ]
        console.log(marks);// OUTPUT : Array(5) [ 2, 3, 4, 5, 6 ]
        // reassin the value of index 3 
        marks [3]= 45;// reassin the value 
        console.log(marks);// outpur : Array(5) [ 2, 3, 4, 45, 6 ]


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

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>JAVASCRIPT CL - 7</title>
      <dc:creator>Vignesh . M</dc:creator>
      <pubDate>Sat, 06 Sep 2025 07:22:48 +0000</pubDate>
      <link>https://dev.to/vignesh_m_4971f2f8dfa54/javascript-cl-7-1b6a</link>
      <guid>https://dev.to/vignesh_m_4971f2f8dfa54/javascript-cl-7-1b6a</guid>
      <description>&lt;p&gt;DAY -7 &lt;br&gt;
FIND THE DIVISOR &lt;br&gt;
    TASK 1&lt;br&gt;
     find the divisior&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; let count =1;
        while(count&amp;lt;100){
            if (count%2==0 &amp;amp;&amp;amp; count %3==0){
                console.log(count);

            }
            count++;
        }
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;TASK 2&lt;br&gt;
        find the divisor of 10 without function&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let count = 1;
        while(count&amp;lt;20){
            if (10%count===0) {
                console.log(count);


            }
            count++;
        }

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

&lt;/div&gt;



&lt;p&gt;with function to find the divisor&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;findDiv(10);
        function findDiv(no) {
            console.log(`find divisor = ${no}`);
            let count = 1;
            while (count &amp;lt;= no ){
                if (no%count==0) {
                    console.log(count);

                }
                count++;
            }
        }//output : 1 2 5 10

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

&lt;/div&gt;



&lt;p&gt;TASK 3 &lt;br&gt;
        COUNT OF DIVISOIR COUNT&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;countOfDiv(10);
        function countOfDiv(no) {
            console.log(`find divisor = ${no}`);
            let count = 1;
            let i=0;
            while (count &amp;lt;= no ){
                if (no%count==0) {


                    i++;

                }

                count++;
            }
            console.log(i);

        } // output : 4
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;TASK 4:&lt;br&gt;
        find the given number is  primeNo  or not&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; countOfDiv(73); //function calling
        function countOfDiv(no) { // function
            console.log(`find divisor = ${no}`);
            let count = 1; // count value
            let i = 0; // i value
            while (count &amp;lt;= no) { //while
                if (no % count == 0) {
                    i++;
                }

                count++;
            }
                if (i &amp;gt; 2) {
                    console.log("NOT A PRIME",no);

                }else{
                    console.log("GIVEN NO IS PRIME NUMBER ",no);

                }


        } //output : GIVEN NO IS PRIME NUMBER  73
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;&lt;u&gt;_DO-WHILE&lt;br&gt;
_&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
 *while is called entery check &lt;br&gt;
sample code for entery check&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let i =5;
while(i&amp;lt;5){
console.log("hello");
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;*In this condtion is false .because 5 is not lesser then 5 . so this code  not run .&lt;br&gt;
 the condition will checked by entery level . if the condition is true the code will  run &lt;br&gt;
or false means not run &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;do-while is called exited check &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;do-while is called exited level check because if user need the before condition will check  or atleast one time the code will run &lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;EXAMPLE CODE  FOR EXITED LEVEL CHECK&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let i =5;
do{
    console.log("hello");
    i++
}
while(i&amp;lt;5);// output : hello

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

&lt;/div&gt;



&lt;p&gt;*In this code will run before condition will check.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>JAVASCRIPT CL -6</title>
      <dc:creator>Vignesh . M</dc:creator>
      <pubDate>Thu, 04 Sep 2025 06:55:00 +0000</pubDate>
      <link>https://dev.to/vignesh_m_4971f2f8dfa54/javascript-cl-6-3ckk</link>
      <guid>https://dev.to/vignesh_m_4971f2f8dfa54/javascript-cl-6-3ckk</guid>
      <description>&lt;p&gt;DAY -6 &lt;/p&gt;

&lt;p&gt;LOOPING  - is used to repated the same action in code or output &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;so , for example will print number 5 in five time &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;so , in javascript &lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;console.log("5");
console.log("5");
console.log("5");
console.log("5");
console.log("5");
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;So the code will repate so this proble will solve to using loop &lt;/p&gt;

&lt;p&gt;In looping we are&lt;br&gt;
    1. for loop&lt;br&gt;
    2. while loop&lt;br&gt;
    3.do-while loop&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;HOW TO LOOPING WILL WORKED &lt;/p&gt;

&lt;p&gt;*IF THE THE STARTING STAGE THE COUNT = 0 ; &lt;br&gt;
*CONDICITION  IS 5 TIME PRINT THE NUMBER 1 IS A OUTPUT &lt;br&gt;
 *SO CHECK THE CONDITION IS LESSERTHEN 5 OR NOT IF CONDITION IS TRUE &lt;br&gt;
 *THE FIRST OUTPUT IS SHOW BUT WE NEED 5 TIME PRINT IN THE OUTPUT BUT CURRENTLY WE PRINT 1  TIME ONLY &lt;br&gt;
 *SO CURRENTLY THE COUNT VALUE IS 1 SO PREVIWES COUNT VALUE 0 TO 1    *SO ADD 1. COUNT = COUNT + 1 ; THEN ONLY WILL GET THE OUT PUT OF 5 *TIME PRINT THE NUMBER 1 &lt;br&gt;
 *THIS LINE WORKING COUNT = PREVIEWS COUNT VALUE + 1 ;// COUNT = 0 + 1;&lt;/p&gt;

&lt;p&gt;EXAMPLE CODE FOR WE NEEDED OUTPUT : FOR NORMAL HUMAN MIND SIDE&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
     let count = 0;
    if (count &amp;lt; 5){ // (1 &amp;lt; 5 )- TURE 
        console.log("1");
        count = count +1; // 0 +1 = 1
    }

    if (count &amp;lt; 5){ // CURRENT COUNT VALUE (1 &amp;lt; 5) - TRUE
        console.log("1");
        count = count +1; 1+1 = 2
    }

    if (count &amp;lt; 5){ CURRENT COUNT VALUE (2 &amp;lt; 5) - TRUE
        console.log("1");
        count = count +1; 2+ 1 =3
    }

    if (count &amp;lt; 5){ CURRENT COUNT VALUE (3 &amp;lt; 5) - TRUE
        console.log("1");
        count = count +1; 3 + 1 =4
    }

    if (count &amp;lt; 5){ CURRENT COUNT VALUE (4 &amp;lt; 5) - TRUE
        console.log("1");
        count = count +1; 4 + 1 = 5
    }

    if (count &amp;lt; 5){{ CURRENT COUNT VALUE (5 &amp;lt; 5) - FALSE SO CODE WILL ENDED 

    }

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

&lt;/div&gt;



&lt;p&gt;SO WE NEED LOOPING TO SOLVE THE ISSUE .BECAUSE WILL SIMPLYFIED THE CODE &lt;/p&gt;

&lt;p&gt;WHILE LOOP&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let count = 0;
while(count&amp;lt;5){
    console.log("1");
    count = count + 1;
}
 console.log(count);// this code will show the count value 
        output :
        1 1 1 1 1

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

&lt;/div&gt;



&lt;p&gt;// SO WE USEING THE LOOPING STATEMENT TO SIMPLYFIED RTHE CODE &lt;/p&gt;

&lt;p&gt;THIS CODE ITERATION IS PREVIEWS HUMAN MIND SIDE CODE &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffg8mg8fxnnylsj4624y3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffg8mg8fxnnylsj4624y3.png" alt=" " width="800" height="466"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;TASK 1&lt;br&gt;
        NEED OUTPUT IS 1 2 3 4 5&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let count = 1;
        while(count&amp;lt;=5){
            console.log(count);
            count++;

        } // OUTPUT IS 1 2 3 4 5
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;TASK 2 &lt;br&gt;
        NEED OUTPUT IS 5 4 3 2 1&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let count = 5
        while (count&amp;gt;=1) {
            console.log(count);
            count--;
        }

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

&lt;/div&gt;



&lt;p&gt;TASK 3 &lt;br&gt;
        NEED OUTPUT 0 2 4 6 8 10&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; let count = 0
        while (count&amp;lt;=10) {
            console.log(count);
            count = count +2;
        }
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;TASK 4&lt;br&gt;
        NEED OUTPUT 10 8 6 4 2 0&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let count = 10
        while (count&amp;gt;=0) {
            console.log(count);
            count= count -2 ;
        }
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>JAVASCRIPT CL - 5</title>
      <dc:creator>Vignesh . M</dc:creator>
      <pubDate>Thu, 04 Sep 2025 06:06:56 +0000</pubDate>
      <link>https://dev.to/vignesh_m_4971f2f8dfa54/javascript-cl-5-33n4</link>
      <guid>https://dev.to/vignesh_m_4971f2f8dfa54/javascript-cl-5-33n4</guid>
      <description>&lt;p&gt;DAY -5&lt;/p&gt;

&lt;p&gt;SWITCH CASE&lt;/p&gt;

&lt;p&gt;in javascript switch case is used to already stored data will getting the particular value or case number &lt;/p&gt;

&lt;p&gt;syntax for switch case:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;switch (user given value ){
    case 1:
        console.log("stored data");
        break;
    case 2:
        consloe.log ("another store data");
        break;
    default:
            console.log("user will given the invaild data");

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

&lt;/div&gt;



&lt;p&gt;sample code:&lt;/p&gt;

&lt;p&gt;find the day of the week useing switch case&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; &amp;lt;script&amp;gt;
        let day =4;//user give data
        switch(day){
            case 1 :
                console.log("monday");
                break;
            case 2 :
             console.log("tuesday");
             break;
            case 3:
                console.log("wesday");
               break;
            case 4:
                console.log("thrusday");
                break;
             case 5:
                console.log("friday")
              break;

        default:
            console.log("Enter Valued Input");
        }  //output : thrusday

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

&lt;/div&gt;



&lt;p&gt;MINI PROJECT : 1&lt;/p&gt;

&lt;p&gt;COLLECT THE DATA FROM THE USER AND CREATE THE LOGIN AND PASSWORD ,USING PROMPT&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;script&amp;gt;


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

&lt;/div&gt;



&lt;p&gt;const userName = "vicky"; // ALREADY STORE DATA &lt;br&gt;
        const Password = "1324"; &lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    const userinputName = prompt("ENTER THE MAIL-ID"); //
    const inputPassword = prompt("ENTER THE PASSWORD")
    console.log(userinputName);
    console.log(inputPassword);

    if (userName === userinputName &amp;amp;&amp;amp; Password === inputPassword) {
        alert("login successfully")
        const options = prompt("WELCOM TO HOME-PAGE!\n1.view profile \n 2 setting page \n 3.adimin page");
        switch (options) {
            case "1":
                alert(`username : ${userName}\n password : ${Password}`);
                break;
            case "2":
                alert(`menu \n privacy \n logout`);
                break;
            case "3":
                alert(`EDITED all code and setting with admin login`);
                break;
            default:
                alert("invaild data");
                break;



        }
    }
    else {
        alert("INVALID USERNAME AND PASSWORD")
    }
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;PROJECT OUTPUT LINK :&lt;br&gt;
    &lt;a href="https://front-end-project692430.gitlab.io/-/front-end/-/jobs/11240913023/artifacts/public/miniproject1.html" rel="noopener noreferrer"&gt;https://front-end-project692430.gitlab.io/-/front-end/-/jobs/11240913023/artifacts/public/miniproject1.html&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>JAVASCRIPT CL-4</title>
      <dc:creator>Vignesh . M</dc:creator>
      <pubDate>Tue, 02 Sep 2025 08:48:33 +0000</pubDate>
      <link>https://dev.to/vignesh_m_4971f2f8dfa54/javascript-cl-4-5fen</link>
      <guid>https://dev.to/vignesh_m_4971f2f8dfa54/javascript-cl-4-5fen</guid>
      <description>&lt;p&gt;DAY 4&lt;br&gt;
opretor in javascript&lt;br&gt;
 comparison opratore &lt;br&gt;
    = - assionment opretore&lt;br&gt;
   == - comparision opretore or equality oprator&lt;/p&gt;

&lt;p&gt;explame : 10 = = 10 //true&lt;br&gt;
          "10" == 10//true .beacause in javascript only check the value only not a datatype&lt;br&gt;
          "10" ==== 10//false . because if given the three equalse will also chenk the datatype also&lt;/p&gt;

&lt;p&gt;next not equal !=&lt;br&gt;
    10 != 10 //false .beacuse will check the value is not equals or not but in this statument is equla&lt;br&gt;
    9 != 10 // true . &lt;br&gt;
    "10" !== 10 // true .because this check the type also &lt;/p&gt;

&lt;p&gt;equlaent oprators:&lt;br&gt;
    ==&lt;br&gt;
    ===&lt;br&gt;
    !=&lt;br&gt;
    !==&lt;/p&gt;

&lt;p&gt;comparision oprator&lt;br&gt;
    &amp;lt; - lessthan //find the number is small or not&lt;br&gt;
    &amp;gt; - greatthen // find the number is big or not&lt;br&gt;
    &amp;lt;= - lessthen or equalto&lt;br&gt;
    &amp;gt;= - greatthen or equalto&lt;/p&gt;

&lt;p&gt;example:&lt;br&gt;
    7 &amp;lt; 10 // true // because 7 is small then to 10&lt;br&gt;
    7 &amp;gt;10  // false  // because 7 is not bigerthen 10&lt;br&gt;
    10 &amp;lt; 10 // false // because 10 is not small or then 10&lt;br&gt;
    10 &amp;lt;= 10 //true // becaues 10 is small then or equal to 10 so true&lt;br&gt;
    10 &amp;gt; 10 //false // because 10 not bigerthen 10&lt;br&gt;
    10 &amp;gt;= 10 // true // because 10 is bigerthen or equal to 10 so true&lt;/p&gt;

&lt;p&gt;logical operator:&lt;br&gt;
    AND - $$&lt;br&gt;
    OR  - ||&lt;br&gt;
    NOT - !&lt;/p&gt;

&lt;p&gt;AND GATE &lt;br&gt;
    if using AND gate the both of the two side is equal then only true&lt;br&gt;
example : 10&amp;lt;7 &amp;amp;&amp;amp; 10&amp;lt;6 //true &amp;amp;&amp;amp; true&lt;/p&gt;

&lt;p&gt;OR GATE&lt;br&gt;
    IF using OR gate any one of the side is true is the condision is true&lt;br&gt;
example : 10&amp;lt;6 || 10&amp;gt;6 true || false&lt;/p&gt;

&lt;p&gt;//AND gate&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;  let ram =8;
        let rom = 128;
        if (ram&amp;gt;=8 &amp;amp;&amp;amp; rom &amp;gt;= 128)
    {
        console.log("buy");
    }//output : buy
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;//OR GATE //it also ram and rom
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; let raam = 6;
    let room = 128;
    if(raam  &amp;gt;= 8 || room &amp;gt;= 128)//false ||  true
    {
        console.log("take") 
    } // output : take
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;//CONDISION IS FALSE IN THE CODE SO NO OUTPUT&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;// let i = 5;
    // let j = 4;
    // if(--i&amp;gt;j &amp;amp;&amp;amp; i++ &amp;gt;=j--)//(4 &amp;gt; 4 &amp;amp;&amp;amp; 5  &amp;gt;= 3)
    // {
    //     console.log("true")
    //     console.log(i)
    //     console.log(j)
    // }//not given the output 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;//CONDICTION TRUE IN THE OUTPUT&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let k =5;
    let m = 4;

    if(--k&amp;gt;m || k++ &amp;gt;=m--)//(4 &amp;gt; 4 || 5 &amp;gt;= 3)
    {
        console.log(k);
        console.log(m); 
        console.log("code done"); 
    }
    //output 5  - 3  - code done

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

&lt;/div&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;//condiction if parchaes value is greaterthan or erqual to 1000Rs then you get discount
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; let perchesvalue = 1000;
    if (perchesvalue &amp;gt;= 1000)
    {
        console.log('10% discount')
    }
    else{
        console.log("no discount")
    }

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

&lt;/div&gt;



&lt;p&gt;NO DISCOUNT CODE&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let prodectvalue = 100;
    if(prodectvalue &amp;gt;= 1000)
    {
        console.log('discount')
    }
    else{
        console.log ("No discount")
    }// OUTPUT : NO Discount
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;//task student take 50 and pass mark is above 50 is pass or below 50 is fail
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; let studentmark= 50;
    if (studentmark&amp;gt;=50)
    {
        console.log("pass")
    }
    else{
        console.log("fail")
    }
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;//task if the student get a 90% mark will given A- great and if student taking 75% mark will get B -great
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; studentsmark = 98;
    if(studentsmark&amp;gt;=50){
        if(studentsmark &amp;gt;=90)
    {
        console.log("GREAT - A")
    }
    else{
        console.log("GREAT -B")
    }
    }
    else{
        console.log("fales")
    }//output: great -A
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>JAVASCRIPT CL-3</title>
      <dc:creator>Vignesh . M</dc:creator>
      <pubDate>Tue, 02 Sep 2025 06:27:47 +0000</pubDate>
      <link>https://dev.to/vignesh_m_4971f2f8dfa54/javascript-cl-3-4c1g</link>
      <guid>https://dev.to/vignesh_m_4971f2f8dfa54/javascript-cl-3-4c1g</guid>
      <description>&lt;p&gt;Day 3&lt;/p&gt;

&lt;p&gt;*Javascript is a dynamic type- if meation the type means is realted to the datatype&lt;/p&gt;

&lt;p&gt;In javascript&lt;br&gt;
    let i= 10;&lt;br&gt;
        i= "abc";&lt;br&gt;
        i= null;&lt;br&gt;
In javascript will reassin the value number to string -number to boolean this is call dainamic typing&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
     let i = 10;
        console.log(i);
        i= "abc";
        console.log(i);
        //output - 10  abc
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    //find the type using type of
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; let j = 10;
        console.log(typeof j);
        j= "abd";
        console.log(typeof j);
        //output : number  - string
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;//function is a keyword 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;//function is a set of instruction with a name&lt;br&gt;
//// the mainthing to use to create the function to use the code reuseablity if need the set of code need will call only the fuctionname only .&lt;br&gt;
syntax of createing funtion&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
    function functionName()
    {

    } 

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

&lt;/div&gt;



&lt;p&gt;sample code :&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;function functionName()
    {
        console.log("hi function");

    } 
    functionName();// this a function calling statement

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

&lt;/div&gt;



&lt;p&gt;if call the function calling multiple times if you needed&lt;br&gt;
////function - is keyword : functionname - is  a nameof the function : () - need input inside the ()&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; function add(no1,no2)
    {
        console.log(no1+no2);
    }
    add(10,20);//output : 30
    add(20,48);//output : 68
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;//sample code 2
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;function greeting(name)
    {
        console.log("hii goodmoring " +name);
    }
    greeting("vicky")//output: hii goodmoring vicky

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

&lt;/div&gt;



&lt;p&gt;**_//function is call hoisted&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Function Declarations: Function declarations are fully hoisted, meaning both the declaration and the function's definition are moved to the top of their scope. This allows functions to be called before they are declared in the code&lt;/p&gt;

&lt;p&gt;//variavle is call not-hoisted _**&lt;br&gt;
&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; let k=10;
    console.log(k);//output : 10
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;/&lt;strong&gt;&lt;em&gt;/task 1&lt;br&gt;
    //fuction (''abc") find the type of variable in the output&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; function tasks(name)
    {
        console.log(name + typeof name);
    }
    tasks("kumar");
    tasks(152)
    tasks(1657746365n)

output:
    kumarstring 
    152number
    1657746365bigint 

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

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>JAVASCRIPT CL-2</title>
      <dc:creator>Vignesh . M</dc:creator>
      <pubDate>Mon, 01 Sep 2025 09:26:46 +0000</pubDate>
      <link>https://dev.to/vignesh_m_4971f2f8dfa54/javascript-cl-2-kl5</link>
      <guid>https://dev.to/vignesh_m_4971f2f8dfa54/javascript-cl-2-kl5</guid>
      <description>&lt;p&gt;Javascript anothor name is Eggmassscript&lt;br&gt;
symble - es-6&lt;br&gt;
bigint - es-11&lt;br&gt;
new datatypes&lt;/p&gt;

&lt;p&gt;variable diclaration&lt;br&gt;
var , let , const&lt;br&gt;
and without declatoin&lt;/p&gt;

&lt;p&gt;they are two type of launage is there &lt;br&gt;
    1. Statically&lt;br&gt;
    2.Dynamically &lt;/p&gt;

&lt;p&gt;STATIC TYPE&lt;br&gt;
JAVA IS ALSO A STATIC TYPE&lt;br&gt;
 STRING name = abc;&lt;br&gt;
 name = xyz;&lt;br&gt;
in java will reacin the value of the variable;&lt;br&gt;
in static is must declaor the datatype &lt;/p&gt;

&lt;p&gt;DYNMIC TYPE&lt;br&gt;
JAVASCRIPT IS A DYNAMIC TYPE&lt;br&gt;
    student = abc;&lt;br&gt;
without meansion the data types &lt;/p&gt;

&lt;p&gt;html - is like builded house &lt;br&gt;
css - is paint for the house&lt;br&gt;
javascript - is a function like a electronic items&lt;/p&gt;

&lt;p&gt;in javascript will replace the defecaties in var datatype &lt;br&gt;
so using let and const&lt;/p&gt;

&lt;p&gt;/block scope - peticular function only it's work&lt;br&gt;
        //global scope -  program fully worked&lt;/p&gt;

&lt;p&gt;print will use consol-log in javascript&lt;/p&gt;

&lt;p&gt;goble scope and local scope&lt;/p&gt;

&lt;p&gt;In javascript &lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; //block scope - peticular function only it's work
    //global scope -  program fully worked

    //without any keyword
    //var - function scope 
    //let - block level scope
    //const - block scope
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;function learnvariable() // name of the function
        {
            name = "vicky"; // data store
            console.log(name);//printstatement
        }
        learnvariable();//calling menthod

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

&lt;/div&gt;


&lt;p&gt;in javascript if the variable will called only called and will show in the output&lt;br&gt;
if the output will show will use print statement outside of the function&lt;/p&gt;

&lt;p&gt;if the function difind and function calling is now completed&lt;/p&gt;

&lt;p&gt;why we doesn't use the var in javascript&lt;br&gt;
for example code:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; function learnvariable()
        {
           var name = "vicky";
           var name = "main";
            console.log("inside",name);
        }
        learnvariable();
        console.log("outside",name);
output
    inside main // it's take a reassing in data
    outside vicky//outside calling will take the without reassing  data 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;in var problem&lt;br&gt;
    1.it is not a block scope&lt;br&gt;
    2.redeclation defecaties or reassing issue &lt;br&gt;
    3.var will allow two time diclare the var&lt;br&gt;
so ,this proble will solve to use let&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
    function learnvariable()
        {
           let name = "vicky";
            console.log("inside",name);
        }
        learnvariable();
        console.log("outside",name);

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

&lt;/div&gt;



&lt;p&gt;in this function will only allow one time declear the let &lt;/p&gt;

&lt;p&gt;will scerate the progrmaimg launage &lt;br&gt;
     1.compiled prg&lt;br&gt;
     2.interpretor prg&lt;br&gt;
will using const will never change or not reasing the value of variable&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;function learnvariable()
        {
           const Username = 10;
            usernamr =20; // its shows a error 
            console.log("inside",Username);
        }
        learnvariable();
        console.log("outside",Username);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;next will find the datatype of the vale&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let i = "hii";
        console.log(typeof i);//if find the type of the datatype using typeof
output:
       string
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>JAVASCRIPT CL - 1</title>
      <dc:creator>Vignesh . M</dc:creator>
      <pubDate>Mon, 01 Sep 2025 07:00:58 +0000</pubDate>
      <link>https://dev.to/vignesh_m_4971f2f8dfa54/javascript-10c1</link>
      <guid>https://dev.to/vignesh_m_4971f2f8dfa54/javascript-10c1</guid>
      <description>&lt;p&gt;&lt;strong&gt;&lt;u&gt;JAVASCRIPT&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;what is javascripe?&lt;br&gt;
*This is front end programming launage&lt;br&gt;
*There are two type of process is there in full stack&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;1.frontend &lt;/li&gt;
&lt;li&gt;2. backend
*In backend can store the data in storeage in database
and retrive the data in database .and uses to retrive the data in 
   1.trt  , 2. pdf,  3 xls this type of formate to share the data to frontend process&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;*So the frontend developer can know the html and css to create the table using html and css&lt;br&gt;
*We using prgram launage to learing for data handling only.&lt;br&gt;
there are three type of application is there&lt;br&gt;
    1. mobile application&lt;br&gt;
    2.web application&lt;br&gt;
    3.system application&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Data&lt;/u&gt;&lt;/strong&gt;:&lt;br&gt;
    It like a information( for example : name ,genter,age,marital status)&lt;br&gt;
    name = string&lt;br&gt;
    age= number (interger)&lt;br&gt;
    gender= string&lt;br&gt;
    heignt= decemale number(float)&lt;br&gt;
    maritale status = true or false (boolen)&lt;br&gt;
    contant = number (big interger or long)&lt;/p&gt;

&lt;p&gt;in javascript has 8 datatype&lt;br&gt;
    1.STRING - more then one chareter to write in javascripe using "" and ''also &lt;br&gt;
    2.NUMBER - number is all number &lt;br&gt;
    3.BIGINT - long number &lt;br&gt;
    4.UNDEFINDED - without using var,let,const is called undefind&lt;br&gt;
    5.NULL - without store the value is call null&lt;br&gt;
    6.SYMBLE -(TBD)&lt;br&gt;
    7.OBJECT -Collection of datas and datatype&lt;br&gt;
    8.BOOLEAN - true or false&lt;/p&gt;

&lt;p&gt;variables&lt;br&gt;
 it a lable of data (for example:)&lt;br&gt;
     kumar - name = kumar is a data and name is a variable and also called identifier &lt;br&gt;
    in javascript to diclare the variable to use the key words&lt;br&gt;
    1.LET&lt;br&gt;
    2.VAR&lt;br&gt;
    3.CONST&lt;/p&gt;

&lt;p&gt;example :&lt;br&gt;
let number = 25;&lt;br&gt;
keyword - variable - assing oprator - value or data ;&lt;br&gt;
in java will mention the datatype is compalsory . but in javascript data type menstion is not manitory &lt;br&gt;
    for example: in java &lt;br&gt;
            string name = "kumar"; mention the datatype is manitory&lt;br&gt;
        IN javascript&lt;br&gt;
            let name = "kumar"; datatype is not manitory&lt;/p&gt;

</description>
    </item>
    <item>
      <title>FRONTEND (HTML)</title>
      <dc:creator>Vignesh . M</dc:creator>
      <pubDate>Tue, 08 Jul 2025 08:42:35 +0000</pubDate>
      <link>https://dev.to/vignesh_m_4971f2f8dfa54/frontend-html-3imd</link>
      <guid>https://dev.to/vignesh_m_4971f2f8dfa54/frontend-html-3imd</guid>
      <description>&lt;p&gt;&lt;strong&gt;&lt;u&gt;HTML Introduction&lt;/u&gt;&lt;/strong&gt;&lt;br&gt;
    * HTML stands for Hyper Text Markup Language, which is the core language used to structure content on the web. It organizes text, images, links, and media using tags and elements that browsers can interpret. As of 2025, over 95% of websites rely on HTML alongside CSS and JavaScript, making it a fundamental tool in modern web development.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;It is a markup language, not a programming language. This means it annotates text to define how it is structured and displayed by web browsers.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It is a static language, meaning it does not inherently provide interactive features but can be combined with CSS for styling and JavaScript for interactivity&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;u&gt;Basic HTML Code Example&lt;/u&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;title&amp;gt;My First Webpage&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
    &amp;lt;h1&amp;gt;Welcome to My Webpage&amp;lt;/h1&amp;gt;
    &amp;lt;p&amp;gt;This is my first paragraph of text!&amp;lt;/p&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;OutPut :&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbh5v89yonv43kgusph36.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbh5v89yonv43kgusph36.png" alt=" " width="532" height="147"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;&lt;u&gt;HTML Page Structure&lt;/u&gt;&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
    * The basic structure of an HTML page is shown below. It contains the essential building-block elements (i.e. doctype declaration, HTML, head, title, and body elements) upon which all web pages are created.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbo02ra322io2vzjnv2uj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fbo02ra322io2vzjnv2uj.png" alt=" " width="768" height="534"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;1. What is Hypertext?&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
    * Hypertext is text that contains links to other texts. When you click on these links, you’re taken to related information — this is the core idea behind how the web works.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Hypertext = Text + Links
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



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

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;a href="https://example.com"&amp;gt;Visit Example&amp;lt;/a&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;2. Why "Hyper"?&lt;/em&gt;&lt;br&gt;
The prefix "hyper-" means "beyond" or "more than."&lt;/p&gt;

&lt;p&gt;So hypertext goes beyond regular text — it connects documents together using hyperlinks.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;_Referred like _&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://www.w3schools.com/html/html_intro.asp" rel="noopener noreferrer"&gt;https://www.w3schools.com/html/html_intro.asp&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.geeksforgeeks.org/html/html-introduction/" rel="noopener noreferrer"&gt;https://www.geeksforgeeks.org/html/html-introduction/&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

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