<?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: Tonmoy</title>
    <description>The latest articles on DEV Community by Tonmoy (@tonmoydev).</description>
    <link>https://dev.to/tonmoydev</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%2F897658%2Fa3479055-6501-4b90-9cc2-f6c9317759e7.png</url>
      <title>DEV Community: Tonmoy</title>
      <link>https://dev.to/tonmoydev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/tonmoydev"/>
    <language>en</language>
    <item>
      <title>Center a div or element in many ways using CSS</title>
      <dc:creator>Tonmoy</dc:creator>
      <pubDate>Wed, 19 Oct 2022 11:25:40 +0000</pubDate>
      <link>https://dev.to/tonmoydev/center-a-div-or-element-in-many-ways-using-css-4eci</link>
      <guid>https://dev.to/tonmoydev/center-a-div-or-element-in-many-ways-using-css-4eci</guid>
      <description>&lt;p&gt;&lt;em&gt;As a beginner, Centering things is one of the most difficult aspects of CSS. You can center a div in a few different ways in CSS. We're trying to understand how to do such thing in easy way.&lt;br&gt;
We'll see how can center a div or element, Horizontally and Vertically.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Let's get started!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Firstly, We consider two elements or containers or div, where one is parent div or container and the another one is child div or container as the below of html code -&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--j1nqCvqY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/bez4w1bkltj3tbfcz60k.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--j1nqCvqY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/bez4w1bkltj3tbfcz60k.png" alt="html code" width="880" height="365"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Here, You must need to take any fixed height to the parent div element. Otherwise, you can't get proper layouts.&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;Using CSS Flexbox&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;The &lt;em&gt;&lt;strong&gt;Flexible Box Layout Module&lt;/strong&gt;&lt;/em&gt;, makes it easier to design &lt;strong&gt;&lt;em&gt;flexible responsive layout&lt;/em&gt;&lt;/strong&gt; structure without using &lt;em&gt;&lt;strong&gt;float or positioning&lt;/strong&gt;&lt;/em&gt;. The reason you'd choose to use flexbox is because you want to lay a collection of items out in &lt;em&gt;&lt;strong&gt;one direction/dimension&lt;/strong&gt;&lt;/em&gt;.&lt;br&gt;
This allows elements to align and distribute space within a container. Using &lt;em&gt;&lt;strong&gt;flexible widths and heights&lt;/strong&gt;&lt;/em&gt;, elements can be aligned to fill a space or distribute space between elements, which makes it a great tool to use for &lt;em&gt;&lt;strong&gt;responsive design systems&lt;/strong&gt;&lt;/em&gt;.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;You can use flexbox for a few main things as &lt;strong&gt;scaling&lt;/strong&gt;, &lt;strong&gt;vertically&lt;/strong&gt; and &lt;strong&gt;horizontally aligning&lt;/strong&gt;, and &lt;strong&gt;re-ordering elements&lt;/strong&gt; within a container. These are best used on page components within a parent element.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;1. Flexbox on parent container&lt;/strong&gt;&lt;br&gt;
This technique is one of my favorite of all. Here, all the CSS properties are defined under the parent container.&lt;/p&gt;

&lt;p&gt;We define the parent div with &lt;em&gt;&lt;strong&gt;display: flex&lt;/strong&gt;&lt;/em&gt; property along with &lt;strong&gt;&lt;em&gt;justify-content&lt;/em&gt;&lt;/strong&gt; (for horizontal placement) and &lt;em&gt;&lt;strong&gt;align-items&lt;/strong&gt;&lt;/em&gt; (for vertical placement) &lt;strong&gt;&lt;em&gt;center&lt;/em&gt;&lt;/strong&gt;. These properties come with Flex specifications.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--QJLkkekG--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/cdwimabl2eydh2taetvw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--QJLkkekG--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/cdwimabl2eydh2taetvw.png" alt="CSS styles" width="880" height="385"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Using Flexbox and margin property&lt;/strong&gt;&lt;br&gt;
The flex property sets the flexible length on flexible items.&lt;/p&gt;

&lt;p&gt;So, We define the parent div with &lt;em&gt;&lt;strong&gt;display: flex&lt;/strong&gt;&lt;/em&gt; property. Besides, we need to add the child div with &lt;strong&gt;&lt;em&gt;margin: auto&lt;/em&gt;&lt;/strong&gt; property. &lt;br&gt;
The margin property to auto used to horizontally center the element within its container. The element will then take up the specified width, and the remaining space will be split equally between the left and right margins.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--UgpJVp2t--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/iltg6vbc6jjg599wht6a.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--UgpJVp2t--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/iltg6vbc6jjg599wht6a.png" alt="CSS styles" width="880" height="437"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Using Flexbox and align-self property&lt;/strong&gt;&lt;br&gt;
Again, We define the parent div with &lt;em&gt;&lt;strong&gt;display: flex&lt;/strong&gt;&lt;/em&gt; property along with &lt;strong&gt;&lt;em&gt;justify-content: center&lt;/em&gt;&lt;/strong&gt; (to justify items along the center of the parent div). Furthermore, we have to add &lt;strong&gt;&lt;em&gt;align-self: center&lt;/em&gt;&lt;/strong&gt; property to the child div. &lt;br&gt;
The align-self CSS property specifies the alignment for the selected item inside the flexible container.  Also, It overrides a flex item's align-items value. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--hqgjnJjn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/cpbk2ve0bldu8v7ynr5n.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--hqgjnJjn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/cpbk2ve0bldu8v7ynr5n.png" alt="CSS styles" width="880" height="462"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;Using CSS Grid&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;CSS Grid&lt;/em&gt;&lt;/strong&gt; is a &lt;em&gt;powerful tool&lt;/em&gt; that allows for &lt;strong&gt;&lt;em&gt;two-dimensional layouts&lt;/em&gt;&lt;/strong&gt; for columns and rows to be created responsive items on the web. The Grid items are arranged in columns, and you can easily position rows without having to mess around with the HTML code.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;CSS Grid is very flexible and responsive. It makes it easy to create two-dimensional layouts. The features of CSS Grid Layout are &lt;strong&gt;Flexible Track Sizes&lt;/strong&gt;, &lt;strong&gt;Item Placement&lt;/strong&gt;, &lt;strong&gt;Alignment Controls&lt;/strong&gt; and so on. CSS Grid Layout helps us build a more &lt;strong&gt;complex layouts&lt;/strong&gt; using both columns and rows.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;4. Using Grid on parent container&lt;/strong&gt;&lt;br&gt;
We define the parent div with &lt;em&gt;&lt;strong&gt;display: grid&lt;/strong&gt;&lt;/em&gt; property along with &lt;strong&gt;&lt;em&gt;justify-content&lt;/em&gt;&lt;/strong&gt; (for horizontal placement) and &lt;em&gt;&lt;strong&gt;align-items&lt;/strong&gt;&lt;/em&gt; (for vertical placement) &lt;strong&gt;&lt;em&gt;center&lt;/em&gt;&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Grid layout enables to align elements into columns and rows. To justify items along the center of the parent div in vertically and horizontally, we use align-items and justify-content properties to center value of a grid layout.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--BHR2Yt-W--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/o531pasqs0bivc64qm77.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--BHR2Yt-W--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/o531pasqs0bivc64qm77.png" alt="CSS styles" width="880" height="385"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. Using Grid and place-items property&lt;/strong&gt;&lt;br&gt;
Again, We define the parent div with &lt;em&gt;&lt;strong&gt;display: grid&lt;/strong&gt;&lt;/em&gt; property for grid layout. And &lt;strong&gt;&lt;em&gt;place-items: center&lt;/em&gt;&lt;/strong&gt; for vertical placement in center. &lt;br&gt;
The place-items property in CSS Grid is shorthand for the align-items and justify-items properties, combining them into a single declaration.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--NLrD90NC--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/dev7rt359cxjl6vihtre.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--NLrD90NC--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/dev7rt359cxjl6vihtre.png" alt="CSS styles" width="880" height="359"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;6. Using Grid properties on parent and child containers&lt;/strong&gt;&lt;br&gt;
Similarly, we define &lt;strong&gt;&lt;em&gt;display: grid&lt;/em&gt;&lt;/strong&gt; to the parent div element here. Also, Add &lt;strong&gt;&lt;em&gt;align-self&lt;/em&gt;&lt;/strong&gt; and &lt;strong&gt;&lt;em&gt;justify-self&lt;/em&gt;&lt;/strong&gt; to &lt;strong&gt;&lt;em&gt;center&lt;/em&gt;&lt;/strong&gt; in the child div element.&lt;br&gt;
The align-self CSS property overrides a grid item's align-items value. In Grid, it aligns (vertical alignment) the item inside the grid area.&lt;br&gt;
Additionally, The CSS justify-self property sets the way a box is justified (horizontal alignment) inside its alignment container along the appropriate axis.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--1gzGCEDi--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/pi8xmqeofm1o7gqfg44a.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--1gzGCEDi--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/pi8xmqeofm1o7gqfg44a.png" alt="CSS styles" width="880" height="437"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;Using CSS Position&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;By default, the position property for all HTML elements in CSS is set to static. This means that if you don't specify any other position value or if the position property is not declared explicitly, it'll be static.&lt;br&gt;
This property takes in five values: &lt;em&gt;&lt;strong&gt;static&lt;/strong&gt;&lt;/em&gt;, &lt;strong&gt;&lt;em&gt;relative&lt;/em&gt;&lt;/strong&gt;, &lt;strong&gt;&lt;em&gt;absolute&lt;/em&gt;&lt;/strong&gt;, &lt;strong&gt;&lt;em&gt;fixed&lt;/em&gt;&lt;/strong&gt;, and &lt;strong&gt;&lt;em&gt;sticky&lt;/em&gt;&lt;/strong&gt; .&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;7. Using CSS Position and Transform property&lt;/strong&gt;&lt;br&gt;
We use positioning and the transform property to vertically and horizontally center the child div or element.&lt;br&gt;
We define &lt;em&gt;&lt;strong&gt;position: relative&lt;/strong&gt;&lt;/em&gt; to the parent div. Also, added &lt;em&gt;&lt;strong&gt;position: absolute&lt;/strong&gt;&lt;/em&gt; , &lt;em&gt;&lt;strong&gt;top: 50%&lt;/strong&gt;&lt;/em&gt; , &lt;em&gt;&lt;strong&gt;left: 50%&lt;/strong&gt;&lt;/em&gt; and &lt;em&gt;&lt;strong&gt;transform: translate(-50%, -50%)&lt;/strong&gt;&lt;/em&gt; to the child div.&lt;br&gt;
In the parent div, we use position to relative because of positioning the child div into absolute position as its inner element.&lt;br&gt;
In the child div, we use position to absolute for taking out of the regular flow of the element and giving it to a custom position. Top and left to 50%, it will leave 50% free space from the top left side of the parent div. And using the transform property, &lt;strong&gt;&lt;em&gt;translate(x, y)&lt;/em&gt;&lt;/strong&gt; , &lt;strong&gt;&lt;em&gt;translateX&lt;/em&gt;&lt;/strong&gt; and &lt;em&gt;&lt;strong&gt;translateY&lt;/strong&gt;&lt;/em&gt; to -50%, means the child element will take the backward space of its 50% width to vertically and horizontally center to the parent div.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--1bVvxSZh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/uh6lg78ivpveh4wf2mdv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--1bVvxSZh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/uh6lg78ivpveh4wf2mdv.png" alt="CSS Position" width="880" height="417"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>css</category>
      <category>html</category>
      <category>beginners</category>
    </item>
    <item>
      <title>SSH - A web developer should know...</title>
      <dc:creator>Tonmoy</dc:creator>
      <pubDate>Fri, 29 Jul 2022 12:59:00 +0000</pubDate>
      <link>https://dev.to/tonmoydev/ssh-a-web-developer-should-know-2oeh</link>
      <guid>https://dev.to/tonmoydev/ssh-a-web-developer-should-know-2oeh</guid>
      <description>&lt;p&gt;&lt;em&gt;&lt;strong&gt;SSH stands for secure shell protocol.&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Just like modern web browsers uses https/ http protocol to communicate with servers, &lt;br&gt;
SSH allows to establish secure communication between systems or two computers, remotely access another computer, clone or pull/push files from GitHub servers and much more.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Let's deep dive more and see how it works?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;SSH breaks data into series of package and encrypts the data before transmitting.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The SSH command consists of 3 distinct parts for Mac and Linux users -&lt;br&gt;
&lt;code&gt;ssh {user}@{host}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Here, &lt;strong&gt;{user}&lt;/strong&gt; represents the account you want to access like as your system &lt;strong&gt;root&lt;/strong&gt; user.&lt;br&gt;
&lt;strong&gt;{host}&lt;/strong&gt; refers to the computer or system you want to access. It can be an IP Address (e.g. 244.235.23.19) or a domain name (e.g. &lt;a href="http://www.xyzdomain.com"&gt;www.xyzdomain.com&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Understanding three encryption techniques of SSH&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Symmetrical encryption&lt;/li&gt;
&lt;li&gt;Asymmetrical encryption&lt;/li&gt;
&lt;li&gt;Hashing.&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Symmetrical encryption - It uses two separated keys to communicate between the systems.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Asymmetrical encryption - It uses public keys, private integrated keys for communicating between the systems&lt;br&gt;
and also uses key exchange algorithm - Difiie Hellman key exchange algorithm.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Hashing - Hashing is a technique of transforming a key or string to another value to enhance the security.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;What a web developer has to do with it??&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Every developer works on any cloud platform and uses tools like Github to host their code. When we are asked to Fork or Clone a Github repository to our account or our local drive, Github comes with two options i.e. HTTPS or SSH.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--eyOeE0SZ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/shfhkmjuj0j8kpbqurdr.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--eyOeE0SZ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/shfhkmjuj0j8kpbqurdr.png" alt="Image description" width="880" height="436"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Here, we can create an SSH key for our system using ssh-key-gen and add it to our Github account.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>beginners</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Print to console - console.log() and more</title>
      <dc:creator>Tonmoy</dc:creator>
      <pubDate>Thu, 28 Jul 2022 05:53:16 +0000</pubDate>
      <link>https://dev.to/tonmoydev/print-to-console-consolelog-and-more-4eca</link>
      <guid>https://dev.to/tonmoydev/print-to-console-consolelog-and-more-4eca</guid>
      <description>&lt;p&gt;Logging or printing messages to the console is a very basic way to diagnose and troubleshoot minor issues or bugs in your code.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;In this article, I'll show you how to print to the console in JS, as well as all of the things you didn't know console could do.&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;To clear the console&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;console.clear();&lt;/code&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--c-cGD8LH--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/7iy7vf5zwyqzguyd339e.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--c-cGD8LH--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/7iy7vf5zwyqzguyd339e.png" alt="Image description" width="880" height="95"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Print string, number or boolean values in console&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;console.log('Hi there');&lt;br&gt;
console.log(10);&lt;br&gt;
console.log(false);&lt;/code&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--EUBYz0t0--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fkr1try2tr76k5cufehl.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--EUBYz0t0--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fkr1try2tr76k5cufehl.png" alt="Image description" width="880" height="143"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Print the value of a variable&lt;/strong&gt;&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 say = 'Hello';
console.log(say);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--jLGfhMUo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/z3x3w7m29ixplba9irlk.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--jLGfhMUo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/z3x3w7m29ixplba9irlk.png" alt="Image description" width="880" height="94"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Print an array to console&lt;/strong&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 quote = ['Keep','it','simple'];
console.log(quote);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--G1lpJw-3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/00j1yvemfj2n06kvdop0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--G1lpJw-3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/00j1yvemfj2n06kvdop0.png" alt="Image description" width="880" height="176"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Print an object to console using log and table method&lt;/strong&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 person = {
  id:002,
  age:20,
  job:'tech'
}
console.log(person);
console.table(person);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--TLpkMok3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/xzd2w9bx1t924fsr1acd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--TLpkMok3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/xzd2w9bx1t924fsr1acd.png" alt="Image description" width="880" height="289"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
