<?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: iamsaurav28</title>
    <description>The latest articles on DEV Community by iamsaurav28 (@iamsaurav28).</description>
    <link>https://dev.to/iamsaurav28</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%2F713529%2F7dfcde54-4c0b-4539-9d2f-34144da25156.jpg</url>
      <title>DEV Community: iamsaurav28</title>
      <link>https://dev.to/iamsaurav28</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/iamsaurav28"/>
    <language>en</language>
    <item>
      <title>JAVASCRIPT</title>
      <dc:creator>iamsaurav28</dc:creator>
      <pubDate>Mon, 04 Sep 2023 04:19:08 +0000</pubDate>
      <link>https://dev.to/iamsaurav28/javascript-jjk</link>
      <guid>https://dev.to/iamsaurav28/javascript-jjk</guid>
      <description>&lt;ul&gt;
&lt;li&gt;&lt;p&gt;JavaScript was build in 1995 by Brendan Eich&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;JavaScript is a extra-ordinary just in time complied programming language that confirms to ECMAScript Specification.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;JavaScript close at hand HTML and CSS is one of the core technologies of the world wide web.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;JavaScript can be used to build server side applications.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;JavaScript is the most Popular programming language according to the 2022 stack overflow developer survey.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Two ways of implementation of JavaScript in HTML&lt;/strong&gt; &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Inpage Javascript&lt;/li&gt;
&lt;li&gt;External javascript
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;     &amp;lt;head&amp;gt;
          &amp;lt;script&amp;gt;
          &amp;lt;/script&amp;gt;
     &amp;lt;/head&amp;gt;
     &amp;lt;body&amp;gt;
        &amp;lt;h1&amp;gt;Inpage Javascript&amp;lt;/h1&amp;gt;
      &amp;lt;script&amp;gt;&amp;lt;/script&amp;gt;
     &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;

*Second is external JavaScript helps to connect js file with html file, if file name is content.js,  it will be insert html as
&amp;lt;html&amp;gt;
     &amp;lt;head&amp;gt;
          &amp;lt;script src="content.js"&amp;gt;&amp;lt;/script&amp;gt;
     &amp;lt;/head&amp;gt;
     &amp;lt;body&amp;gt;
     &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt; ```



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

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;What are the comments in Javascript ?&lt;/strong&gt;&lt;br&gt;
There are Two types of comments.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Single line comment&lt;/li&gt;
&lt;li&gt;Multiple line comment &lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;commented code will stay in code but wont its like body without live.&lt;/p&gt;

&lt;p&gt;if your any single line of code is useless you can comment it with two  slash // &lt;br&gt;
for example &lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
&amp;lt;body&amp;gt;
      //&amp;lt;h1&amp;gt;Inpage Javascript&amp;lt;/h1&amp;gt;
 &amp;lt;/body&amp;gt;

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

&lt;/div&gt;

&lt;p&gt;And if your code is than more 1 line, you can comment it with slash and star /* from start till end of code&lt;br&gt;
for example&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
&amp;lt;body&amp;gt;
      /*&amp;lt;h1&amp;gt;i am double line code&amp;lt;/h1&amp;gt;
        &amp;lt;div&amp;gt;hello world &amp;lt;/div&amp;gt;
        &amp;lt;div&amp;gt;hello coders&amp;lt;/div&amp;gt;*/
&amp;lt;/body&amp;gt;

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

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;what are the variables ? in JavaScript and what are its types?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A JavaScript variable is simply a name of storage location.     There are two types of variables in JavaScript.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;local variable and &lt;/li&gt;
&lt;li&gt;global variable.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Variables are Declares in 3 Types&lt;/strong&gt;&lt;br&gt;
1.Var (Global scope)&lt;br&gt;
2.let (Block scope)&lt;br&gt;
3.Const (Block scope)&lt;/p&gt;

&lt;p&gt;global scope has access to work anywhere in program, But block scope only works inside the { curly brackets}.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
if(condition){        if(condition){          if(condition){
var a="hello world"     var a="hello world"      var a="hello world"
}                         console.log(a)           console.log(a)        
console.log(a)           }                         } 

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

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;What are the Data Types in Javascript ?&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;String  (if data is inside "Quotes"),&lt;/li&gt;
&lt;li&gt;Number (if data is a 1,2,3 number),&lt;/li&gt;
&lt;li&gt;Boolean (if data is true or false),&lt;/li&gt;
&lt;li&gt;Array (if data is inside [ square bracket ]),&lt;/li&gt;
&lt;li&gt;Object (if data if under {curly bracket}),&lt;/li&gt;
&lt;li&gt;Null (if data is null),&lt;/li&gt;
&lt;li&gt;Undefined (no data).&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;what are the Arithmetic Operators in javascript and its uses ?&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;+ (plus sign) used for addition purpose.&lt;/li&gt;
&lt;li&gt;- (minus sign) used for subtraction of values.&lt;/li&gt;
&lt;li&gt;* (star sign) used for multiplication.&lt;/li&gt;
&lt;li&gt;** (2 star sign) used for exponentiation.&lt;/li&gt;
&lt;li&gt;/ (slash sign) used for division.&lt;/li&gt;
&lt;li&gt;% (percentage sign) for modulus remainder.&lt;/li&gt;
&lt;li&gt;++ (2 plus sign) used for increment.&lt;/li&gt;
&lt;li&gt;-- (2 minus sign) used for decrement. &lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;and there are also an Assignment Operator and Comparison Operators&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;this are the Assignment Operator given below&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;= &lt;/li&gt;
&lt;li&gt;+=&lt;/li&gt;
&lt;li&gt;-=&lt;/li&gt;
&lt;li&gt;*=&lt;/li&gt;
&lt;li&gt;/=&lt;/li&gt;
&lt;li&gt;%=&lt;/li&gt;
&lt;li&gt;**=&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Now Lets check the Comparison Operator's Below&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;== (2 equal to) must have same value.&lt;/li&gt;
&lt;li&gt;=== (3 equal to) must have same value and same data type.&lt;/li&gt;
&lt;li&gt;!= (xcalamtion and equal) shows not equal value.&lt;/li&gt;
&lt;li&gt;!== (xclamation and 2equal) not equal value or not equal type.&lt;/li&gt;
&lt;li&gt;&amp;gt; (greater than)&lt;/li&gt;
&lt;li&gt;&amp;lt; (Lesser than)&lt;/li&gt;
&lt;li&gt;&amp;gt;=  (greater than or equal to)&lt;/li&gt;
&lt;li&gt;&amp;lt;= (Lesser than or equal to) &lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>programming</category>
      <category>beginners</category>
    </item>
    <item>
      <title>What is Css?</title>
      <dc:creator>iamsaurav28</dc:creator>
      <pubDate>Mon, 27 Sep 2021 06:20:35 +0000</pubDate>
      <link>https://dev.to/iamsaurav28/what-is-css-3d29</link>
      <guid>https://dev.to/iamsaurav28/what-is-css-3d29</guid>
      <description>&lt;p&gt;CSS stands for &lt;strong&gt;Cascading Style Sheets&lt;/strong&gt;. It is a language designed to format the layout of Web pages. It is used to enable the separation of presentation and content, which includes layout, colors, and fonts. They improve the accessibility of content, make it more flexible. CSS enables the specific look of HTML in the browser. CSS has lots of advantages. CSS is a great time-saver; you can write CSS once and then use the same sheet in multiple HTML pages. It provides multiple device compatibility; style sheets allow content to be optimized for more than one type of device.&lt;/p&gt;

&lt;p&gt;Before you continue, you should have a basic knowledge about HTML because, with HTML tags, we create our pages, and with CSS, we give style to our tags. It means we make our page more beautiful. HTML is used to structure content while the CSS is used for structured formatting content. With CSS, we can change the &lt;strong&gt;&lt;a href="https://tailwindcss.com/docs/customizing-colors"&gt;color&lt;/a&gt;&lt;/strong&gt;, &lt;strong&gt;&lt;a href="https://tailwindcss.com/docs/background-color"&gt;background-color&lt;/a&gt;&lt;/strong&gt;, &lt;strong&gt;&lt;a href="https://fonts.google.com/?preview.size=22"&gt;font-size&lt;/a&gt;&lt;/strong&gt;, etc. Our CSS guide provides some sections which cover the basic knowledge, CSS Properties, and Selectors.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is box modal in CSS?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Image result for what is box model in css&lt;br&gt;
CSS box model is a container which contains multiple properties including borders, margin, padding and the content itself. It is used to create the design and layout of web pages. It can be used as a toolkit for customizing the layout of different elements.&lt;/p&gt;

&lt;p&gt;In CSS, the term "box model" is used when talking about design and layout.&lt;/p&gt;

&lt;p&gt;The CSS box model is essentially a box that wraps around every HTML element. It consists of: margins, borders, padding, and the actual content. The click on &lt;strong&gt;&lt;a href="https://www.w3schools.com/css/css_boxmodel.asp"&gt;box model&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>language</category>
      <category>colors</category>
      <category>layout</category>
      <category>fonts</category>
    </item>
  </channel>
</rss>
