<?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: Santhi Sri Jamisetty</title>
    <description>The latest articles on DEV Community by Santhi Sri Jamisetty (@sanjami2010).</description>
    <link>https://dev.to/sanjami2010</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%2F264967%2F103ea44f-d129-4d0e-8c8a-ba6481e3bdad.png</url>
      <title>DEV Community: Santhi Sri Jamisetty</title>
      <link>https://dev.to/sanjami2010</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sanjami2010"/>
    <language>en</language>
    <item>
      <title>Variables and Datatypes In JavaScript-series-1b</title>
      <dc:creator>Santhi Sri Jamisetty</dc:creator>
      <pubDate>Sat, 08 Aug 2020 15:02:14 +0000</pubDate>
      <link>https://dev.to/sanjami2010/variables-and-datatypes-in-javascript-series-1b-2n6p</link>
      <guid>https://dev.to/sanjami2010/variables-and-datatypes-in-javascript-series-1b-2n6p</guid>
      <description>&lt;p&gt;JavaScript is loose typed which means you don't need to specify the type of variable while declaring it, which differentiates other languages like Java, C++ wherein you need to specify its type while declaring a variable.&lt;br&gt;
Ex: In JavaScript  var age = 10;&lt;br&gt;
    In Java&lt;br&gt;&lt;br&gt;
 int age = 10; specify the type of variable.&lt;/p&gt;

&lt;p&gt;The Primitive Type datatype includes :&lt;/p&gt;

&lt;p&gt;1)String ex: var color = "orange";&lt;br&gt;
2)Number ex: var salary = 100;&lt;br&gt;
3)Boolean(to check true or false) ex: isCatSleeping = true;&lt;br&gt;
4)Null    ex:refer to series 1a where in the table you see the "Registration Cost " for Andy Young has no value. &lt;br&gt;
5)Undefined  ex: var myCar; the variable  myCar declared but has not set any value.&lt;br&gt;
6)BigInt(recently added). These are for micro-precision timestamps.Please refer to MDN JavaScript for further reading.&lt;/p&gt;

&lt;p&gt;Note:To check the variable dataype use this function called typeof();&lt;br&gt;
Ex: &lt;code&gt;var color = "orange";&lt;br&gt;
typeof(color)&lt;/code&gt; output is "string".&lt;/p&gt;

&lt;p&gt;The other called complex/composite datatypes because these include Objects as well as the Primitive types.&lt;br&gt;
Objects includes Array&lt;br&gt;
Array&lt;br&gt;
Function etc.&lt;br&gt;
We will learn about object-oriented programming later.&lt;/p&gt;

&lt;p&gt;Modern browsers use ECMASCRIPT to overcome the scope of the variables. We will learn about it in series 1c. where we learn about hoisting, let, const etc.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Variables and Datatypes In JavaScript-series-1a</title>
      <dc:creator>Santhi Sri Jamisetty</dc:creator>
      <pubDate>Thu, 06 Aug 2020 00:22:37 +0000</pubDate>
      <link>https://dev.to/sanjami2010/variables-and-datatypes-in-javascript-4bo4</link>
      <guid>https://dev.to/sanjami2010/variables-and-datatypes-in-javascript-4bo4</guid>
      <description>&lt;p&gt;Photo by Maureen Sgro on Unsplash&lt;/p&gt;

&lt;p&gt;What are variables? Why do we need them in programming.&lt;/p&gt;

&lt;p&gt;Variables are containers (a memory location)as seen above in the color palette to store values and access them whenever required.&lt;/p&gt;

&lt;p&gt;So what type of values our variables store?&lt;/p&gt;

&lt;p&gt;Any value or any piece of information our containers can store. As in the color-palette which can store any color and remove the color, similarly, in variables we can rewrite the values as per the requirement.&lt;/p&gt;

&lt;p&gt;Again the information stored in variable can be of same type, called "Primitive type" as in example 1 which stored a string.We'll get it to later when we learn about the data types.&lt;br&gt;
 Or the other type includes collections called "Objects" which hold different types together. Like when you work with excel file or database table the entire record or row is a collection which constitute numbers, null values, string etc. as in example 2&lt;/p&gt;

&lt;p&gt;&lt;code&gt;var myName = "Santhi";&lt;/code&gt; ------example 1-Primitive type&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;First Name&lt;/th&gt;
&lt;th&gt;Last Name&lt;/th&gt;
&lt;th&gt;Registration Cost&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Sean&lt;/td&gt;
&lt;td&gt;Forbes&lt;/td&gt;
&lt;td&gt;$1600&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Jack&lt;/td&gt;
&lt;td&gt;Rogers&lt;/td&gt;
&lt;td&gt;$985&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Andy&lt;/td&gt;
&lt;td&gt;Young&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;          ...To be continued in series 1b.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>var</category>
      <category>const</category>
      <category>let</category>
      <category>datatypes</category>
    </item>
  </channel>
</rss>
