<?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: kavin K</title>
    <description>The latest articles on DEV Community by kavin K (@kavin_k_5b0b0c5a2e4bbf880).</description>
    <link>https://dev.to/kavin_k_5b0b0c5a2e4bbf880</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%2F4062896%2F5f0f7ffa-d09d-40fa-a109-617c23834f18.png</url>
      <title>DEV Community: kavin K</title>
      <link>https://dev.to/kavin_k_5b0b0c5a2e4bbf880</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kavin_k_5b0b0c5a2e4bbf880"/>
    <language>en</language>
    <item>
      <title>Java script c-2 variables</title>
      <dc:creator>kavin K</dc:creator>
      <pubDate>Sat, 22 Aug 2026 03:51:49 +0000</pubDate>
      <link>https://dev.to/kavin_k_5b0b0c5a2e4bbf880/java-script-c-2-variables-5bji</link>
      <guid>https://dev.to/kavin_k_5b0b0c5a2e4bbf880/java-script-c-2-variables-5bji</guid>
      <description>&lt;p&gt;i)let&lt;br&gt;
ii)const&lt;br&gt;
iii)var&lt;/p&gt;

&lt;p&gt;Let,var -almost same&lt;br&gt;
let-It works in {} only&lt;br&gt;
var-It works in globally.outoff {}&lt;/p&gt;

&lt;p&gt;const-we cannot change the value.&lt;br&gt;
      Eg.amazon order limit.&lt;/p&gt;

&lt;p&gt;Program:&lt;br&gt;
&lt;br&gt;
clickme&lt;br&gt;
&amp;lt;/button)&lt;/p&gt;


&lt;p&gt;addnumbers - function name&lt;br&gt;
clickme    - button name&lt;/p&gt;

&lt;p&gt;Program:&lt;br&gt;
let a=100&lt;br&gt;
function addnumbers()&lt;br&gt;
console.log(a)&lt;/p&gt;

&lt;p&gt;Op:&lt;br&gt;
100&lt;/p&gt;

&lt;p&gt;var name="kavin"&lt;br&gt;
var name="Praveen"&lt;br&gt;
var name="naresh"&lt;br&gt;
console.log(name)&lt;/p&gt;

&lt;p&gt;Op:&lt;br&gt;
naresh&lt;br&gt;
console.log(name) access immediate reference.&lt;/p&gt;

&lt;p&gt;*we can't initiate one or more variable with same name in let and const.But we do that in 'var'.&lt;/p&gt;

&lt;p&gt;Demerits of var:&lt;/p&gt;
&lt;h2&gt;
  
  
  i)initialzes more reference values in same name. It has more chance to create bug.
&lt;/h2&gt;

&lt;p&gt;function addNumbers(){&lt;br&gt;
var a=10;&lt;br&gt;
{&lt;br&gt;
var a=15;&lt;br&gt;
}&lt;br&gt;
console.log(a);&lt;br&gt;
}&lt;br&gt;
console.log(a);-----&amp;gt;&lt;br&gt;
Op:&lt;br&gt;
a is not defined&lt;br&gt;
Var-It is afunction scoping. It works in within function only {}&lt;/p&gt;

&lt;p&gt;If stop the the last "console.log(a);" we will get the op of value is "15".&lt;/p&gt;

&lt;p&gt;let vs var:&lt;br&gt;
we can access the value out of scoping{} in var. &lt;/p&gt;

&lt;p&gt;Eg:&lt;br&gt;
{&lt;br&gt;
var a=15;&lt;br&gt;
}&lt;br&gt;
console.log(a);&lt;br&gt;
Op:&lt;br&gt;
15&lt;/p&gt;

&lt;p&gt;Hosting:&lt;br&gt;
function addnumbers(){&lt;br&gt;
console.log(a);&lt;br&gt;
var a=10;&lt;br&gt;
{&lt;br&gt;
var a=15;&lt;br&gt;
}&lt;br&gt;
console.log(a);&lt;br&gt;
}&lt;br&gt;
Op:&lt;br&gt;
undefined &lt;br&gt;
15&lt;/p&gt;

&lt;p&gt;if we create var, it initially move to the top and it assigned to undefined.&lt;/p&gt;


</description>
      <category>beginners</category>
      <category>javascript</category>
      <category>programming</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Responsive Design</title>
      <dc:creator>kavin K</dc:creator>
      <pubDate>Fri, 14 Aug 2026 00:55:22 +0000</pubDate>
      <link>https://dev.to/kavin_k_5b0b0c5a2e4bbf880/responsive-design-3d3n</link>
      <guid>https://dev.to/kavin_k_5b0b0c5a2e4bbf880/responsive-design-3d3n</guid>
      <description>&lt;p&gt;d12;&lt;br&gt;
*Responsive design:&lt;br&gt;
It is used for good look websites. Automatically adjusting their layout, colour.&lt;br&gt;
i)Use technologies:&lt;br&gt;
Flexible grids&lt;br&gt;
Responsive images&lt;br&gt;
Css media queries&lt;/p&gt;

&lt;h2&gt;
  
  
  Eg: We give one colour(yellow) for words during code time.. But chanage the colour(green) during printed time.
&lt;/h2&gt;

&lt;p&gt;Max width  Vs Min width:&lt;br&gt;
Max width: Laptop to Mobile&lt;br&gt;
Min width: Mobile to Laptop&lt;/p&gt;

&lt;p&gt;Both Min width and Max width:&lt;/p&gt;

&lt;h2&gt;
  
  
  Syntax:&lt;a class="mentioned-user" href="https://dev.to/media"&gt;@media&lt;/a&gt; screen and (min-width:500px) and (max-width:900px)
&lt;/h2&gt;

&lt;p&gt;icon tag:&lt;br&gt;
It is just small one image&lt;br&gt;
It is operate by check box(#input type)&lt;/p&gt;

&lt;h2&gt;
  
  
  Alternate method:use button
&lt;/h2&gt;

&lt;p&gt;limitations:if we use button, we will use java script language.&lt;/p&gt;

&lt;p&gt;why we use label?&lt;/p&gt;

&lt;h2&gt;
  
  
  .......
&lt;/h2&gt;

&lt;p&gt;Grid:line setup(21.10)&lt;br&gt;
include:&lt;br&gt;
  #img        &lt;a href="" class="article-body-image-wrapper"&gt;&lt;img&gt;&lt;/a&gt;&lt;br&gt;
  #header     &lt;/p&gt;
&lt;h3&gt;
&lt;br&gt;
  #paragraph  &lt;/h3&gt;


&lt;p&gt;Box sizing:&lt;br&gt;
i)border box&lt;br&gt;
ii)content box&lt;/p&gt;

&lt;p&gt;JAVA SCRIPT:&lt;br&gt;
Java script is a versatile, high level programming language used primarily to create interactive and dynamic content on the web.&lt;br&gt;
*javascript run in web page.&lt;/p&gt;

&lt;p&gt;interactive-    man discussed with computer&lt;br&gt;
dynamiccontent- change the web page(eg.click the icon button it expand and show Home,About, login page etc.)&lt;/p&gt;

&lt;p&gt;*It allows websites to respond instantly(eg:login page) to user actions without needing to reload the entire page.&lt;/p&gt;

&lt;p&gt;*JavaScript is a single-threaded language that executes one task at a time.(Eg:first complete instagram, airbnb, youtube)5.29&lt;br&gt;
*it is an interpreted language which means it execudes the code line by line.&lt;/p&gt;

&lt;p&gt;*The data type of the variable is decided at run-time in javascript that's why it is called dynamically typed.&lt;br&gt;
run-time:code run aagura time.&lt;br&gt;
dynamically typed:It is need not variable. it take automatically(variable-int,string etc)&lt;/p&gt;

&lt;p&gt;JIT Compiler:&lt;br&gt;
Just In Time&lt;br&gt;
It converts the code Javascript(English) to 0's and 1's.&lt;/p&gt;

&lt;p&gt;compiler:&lt;br&gt;
(compiler take all code then it convert (English to Binary code)&lt;br&gt;
In javascript read all the code at a time. Eg:Read someone Rich dad poor  dad book after complete book he say all the content.&lt;/p&gt;

&lt;p&gt;compilation:&lt;br&gt;
The process that invloves the translation of Javascript code into machine code occurs using compilation interpretation.&lt;br&gt;
In compilation the entire source code is converted into machine code at once and written into a binary file to be executed by the computer.&lt;br&gt;
(binary file-.class file)&lt;br&gt;
sourcecode--binarycode--storebinarycodefile(.class file).this process is presents in Java. But this process only not present in javascript.&lt;/p&gt;

&lt;p&gt;sourcecode-------------machinecode-----------Hello world&lt;br&gt;
          (compilation)(binary file)(execution)&lt;/p&gt;

&lt;p&gt;Interpretation:&lt;br&gt;
source code-------------------------------------Hello world&lt;br&gt;
                     Execution&lt;br&gt;
In contrast, during interpretation, the interpreter goes through the source code and interprets it line by line, executing each line as it encounters it.&lt;/p&gt;

&lt;p&gt;JIT compiler:&lt;br&gt;
Javascript combines both compilation and interpretation.&lt;br&gt;
This is called JIT.compilation. This method compiles the entire code into machine code  all once and executes it.&lt;/p&gt;

&lt;p&gt;source code---------Machine code---------Hello world&lt;br&gt;
          compilation     |      executuion&lt;br&gt;
                          |&lt;br&gt;
    not create .class file in javascript. it creates java only.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;25.50&lt;/strong&gt;*********************&lt;br&gt;
1.Interpreter:&lt;br&gt;
An interpreter runs instructions directly from the programming language without changing them into machine code.&lt;/p&gt;

&lt;p&gt;2.Compiler:&lt;br&gt;
A compiler changes the entire program into object code(or binary code) and saves it. This code can then be run by the machine.&lt;/p&gt;

&lt;p&gt;JIT compiler = Interpreter+compiler&lt;/p&gt;

&lt;p&gt;28.54&lt;/p&gt;




&lt;p&gt;what is variable?&lt;br&gt;
It is helps store data.&lt;br&gt;
To access data.&lt;br&gt;
It is like container.&lt;/p&gt;



</description>
    </item>
    <item>
      <title>html</title>
      <dc:creator>kavin K</dc:creator>
      <pubDate>Tue, 04 Aug 2026 17:31:40 +0000</pubDate>
      <link>https://dev.to/kavin_k_5b0b0c5a2e4bbf880/html-12k</link>
      <guid>https://dev.to/kavin_k_5b0b0c5a2e4bbf880/html-12k</guid>
      <description>&lt;p&gt;html is hyper text language.&lt;/p&gt;

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