<?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: Abinaya V</title>
    <description>The latest articles on DEV Community by Abinaya V (@abinaya_v_7e6321c160544f1).</description>
    <link>https://dev.to/abinaya_v_7e6321c160544f1</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%2F3844420%2F66394160-1b8a-4e99-8016-758033e998e5.jpg</url>
      <title>DEV Community: Abinaya V</title>
      <link>https://dev.to/abinaya_v_7e6321c160544f1</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/abinaya_v_7e6321c160544f1"/>
    <language>en</language>
    <item>
      <title>OOP concepts in Java:</title>
      <dc:creator>Abinaya V</dc:creator>
      <pubDate>Sat, 27 Jun 2026 11:43:44 +0000</pubDate>
      <link>https://dev.to/abinaya_v_7e6321c160544f1/oop-concepts-in-java-5hln</link>
      <guid>https://dev.to/abinaya_v_7e6321c160544f1/oop-concepts-in-java-5hln</guid>
      <description>&lt;p&gt;&lt;strong&gt;1. Object&lt;/strong&gt;&lt;br&gt;
    An object is an instance of a class. It represents a real-world thing and contains data (variables) and behavior (methods).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Class&lt;/strong&gt;&lt;br&gt;
    A class is a blueprint/template used to create objects.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Encapsulation&lt;/strong&gt;&lt;br&gt;
    Encapsulation means wrapping data and methods into one unit (class) and protecting data using access modifiers.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Abstraction&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; Abstraction means hiding implementation details and showing only important information.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;5. Polymorphism&lt;/strong&gt;&lt;br&gt;
      Polymorphism means one thing having many forms.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;6.Inheritance&lt;/strong&gt;&lt;br&gt;
     Inheritance is an OOP concept where one class acquires (inherits) properties and methods of another class.&lt;/p&gt;

&lt;h2&gt;
  
  
  Short Interview Definition:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Class: Blueprint for creating objects&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Object: Instance of a class&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Encapsulation: Binding data and methods together&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Abstraction: Hiding internal details&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Polymorphism: One name, multiple behaviors&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>java</category>
    </item>
    <item>
      <title>About Backend</title>
      <dc:creator>Abinaya V</dc:creator>
      <pubDate>Fri, 26 Jun 2026 11:17:57 +0000</pubDate>
      <link>https://dev.to/abinaya_v_7e6321c160544f1/about-backend-139c</link>
      <guid>https://dev.to/abinaya_v_7e6321c160544f1/about-backend-139c</guid>
      <description>&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;What is Backend?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Backend is the server-side part of an application that handles the logic, database, security, and communication between the user interface (frontend) and the server.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Simple flow:&lt;/strong&gt;&lt;br&gt;
    User → Front End → Back End → Database → Back End → Front End → User&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Back End Programming Languages:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Java&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;python&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;JavaScript (Node.js)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;PHP&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;C Sharp&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Ruby&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Go&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Back End Languages Comparison&lt;/strong&gt;&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Language&lt;/th&gt;
&lt;th&gt;Difficulty&lt;/th&gt;
&lt;th&gt;Speed&lt;/th&gt;
&lt;th&gt;Popular Framework&lt;/th&gt;
&lt;th&gt;Best Used For&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Java&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Medium&lt;/td&gt;
&lt;td&gt;Fast&lt;/td&gt;
&lt;td&gt;Spring Boot&lt;/td&gt;
&lt;td&gt;Enterprise apps, banking, large systems&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Python&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Easy&lt;/td&gt;
&lt;td&gt;Medium&lt;/td&gt;
&lt;td&gt;Django, Flask&lt;/td&gt;
&lt;td&gt;Web apps, AI, data science&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;JavaScript (Node.js)&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Easy&lt;/td&gt;
&lt;td&gt;Fast&lt;/td&gt;
&lt;td&gt;Express.js&lt;/td&gt;
&lt;td&gt;Real-time apps, APIs, web apps&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;PHP&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Easy&lt;/td&gt;
&lt;td&gt;Medium&lt;/td&gt;
&lt;td&gt;Laravel&lt;/td&gt;
&lt;td&gt;Websites, CMS, web development&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;C#&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Medium&lt;/td&gt;
&lt;td&gt;Fast&lt;/td&gt;
&lt;td&gt;ASP.NET Core&lt;/td&gt;
&lt;td&gt;Microsoft apps, enterprise software, games&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Ruby&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Easy&lt;/td&gt;
&lt;td&gt;Medium&lt;/td&gt;
&lt;td&gt;Ruby on Rails&lt;/td&gt;
&lt;td&gt;Startups, quick web development&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Go (Golang)&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Medium&lt;/td&gt;
&lt;td&gt;Very Fast&lt;/td&gt;
&lt;td&gt;Gin, Echo&lt;/td&gt;
&lt;td&gt;Cloud services, high-performance APIs&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;Backend task&lt;/strong&gt;&lt;br&gt;
A backend can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Process user logins&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Store and retrieve data from databases&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Handle payments&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Send emails and notifications&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Provide APIs for mobile and web apps&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>java</category>
    </item>
    <item>
      <title>How to find simple error in java</title>
      <dc:creator>Abinaya V</dc:creator>
      <pubDate>Wed, 24 Jun 2026 17:09:40 +0000</pubDate>
      <link>https://dev.to/abinaya_v_7e6321c160544f1/how-to-find-simple-error-in-java-56l8</link>
      <guid>https://dev.to/abinaya_v_7e6321c160544f1/how-to-find-simple-error-in-java-56l8</guid>
      <description>&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Feweg5d1m55boq2cww02c.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Feweg5d1m55boq2cww02c.png" alt=" " width="798" height="228"&gt;&lt;/a&gt;&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ffw9n8jv1f4vqaj0ac524.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Ffw9n8jv1f4vqaj0ac524.png" alt=" " width="799" height="198"&gt;&lt;/a&gt;&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fwyzctnf273bvrcin6a0r.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fwyzctnf273bvrcin6a0r.png" alt=" " width="799" height="192"&gt;&lt;/a&gt;&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fx7lewghpskza8ub8whp1.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fx7lewghpskza8ub8whp1.png" alt=" " width="799" height="185"&gt;&lt;/a&gt;&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fvae2obd3aoxf4tbvi9fy.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fvae2obd3aoxf4tbvi9fy.png" alt=" " width="800" height="206"&gt;&lt;/a&gt;&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fubarel80sqpmd74u2ev8.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fubarel80sqpmd74u2ev8.png" alt=" " width="799" height="220"&gt;&lt;/a&gt;&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fic2fmxm5h64aou4g99jj.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fic2fmxm5h64aou4g99jj.png" alt=" " width="800" height="191"&gt;&lt;/a&gt;&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9sfpzh59byzskb3ohjeu.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9sfpzh59byzskb3ohjeu.png" alt=" " width="800" height="224"&gt;&lt;/a&gt;&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Feu30tuju96gcqnp9a18h.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Feu30tuju96gcqnp9a18h.png" alt=" " width="800" height="183"&gt;&lt;/a&gt;&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F2353t9whp4ojc1hu1q6j.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F2353t9whp4ojc1hu1q6j.png" alt=" " width="800" height="218"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
    </item>
    <item>
      <title>Introduction to Java</title>
      <dc:creator>Abinaya V</dc:creator>
      <pubDate>Mon, 22 Jun 2026 18:40:41 +0000</pubDate>
      <link>https://dev.to/abinaya_v_7e6321c160544f1/introduction-to-java-211g</link>
      <guid>https://dev.to/abinaya_v_7e6321c160544f1/introduction-to-java-211g</guid>
      <description>&lt;p&gt;Java is a high-level, object-oriented, platform-independent programming language developed by Sun Microsystems in 1995 (now owned by Oracle Corporation).&lt;/p&gt;

&lt;p&gt;The founder (creator) of Java is James Gosling.&lt;/p&gt;

&lt;p&gt;Originally, Java was called Oak, and it was designed for electronic devices. Later it was renamed Java and became popular for web, mobile, and enterprise applications.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Compiler&lt;/strong&gt;&lt;br&gt;
     A compiler is a software program that converts the source code written by a programmer into machine language (binary code) so that the computer can understand and execute it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Simple meaning:&lt;/strong&gt;&lt;br&gt;
      Compiler = A translator that changes human-written code → computer-understandable code&lt;/p&gt;

&lt;h2&gt;
  
  
  There are two types of Translation
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Compiler Translation:&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; Compiler Translation means converting a program written in a high-level programming language into a language that a computer can understand.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;Interpreter Translation  :&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; An Interpreter is a program that reads and executes code line by line without converting the whole program at once.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;In java we  use Interpreter Translation line bye line execution.&lt;/p&gt;

</description>
      <category>java</category>
    </item>
    <item>
      <title>Basic problem python</title>
      <dc:creator>Abinaya V</dc:creator>
      <pubDate>Sat, 13 Jun 2026 16:52:53 +0000</pubDate>
      <link>https://dev.to/abinaya_v_7e6321c160544f1/basic-problem-python-1aa9</link>
      <guid>https://dev.to/abinaya_v_7e6321c160544f1/basic-problem-python-1aa9</guid>
      <description>&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%2F3gu24femayzog86gayuh.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%2F3gu24femayzog86gayuh.png" alt=" " width="799" height="181"&gt;&lt;/a&gt;&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%2F0azy06rxc9gkzsr3cpbt.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%2F0azy06rxc9gkzsr3cpbt.png" alt=" " width="757" height="178"&gt;&lt;/a&gt;&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%2Fhdez8bagyyaypry0oqc1.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%2Fhdez8bagyyaypry0oqc1.png" alt=" " width="800" height="227"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
    </item>
    <item>
      <title>Browser Router</title>
      <dc:creator>Abinaya V</dc:creator>
      <pubDate>Thu, 28 May 2026 09:16:19 +0000</pubDate>
      <link>https://dev.to/abinaya_v_7e6321c160544f1/browser-router-1hlh</link>
      <guid>https://dev.to/abinaya_v_7e6321c160544f1/browser-router-1hlh</guid>
      <description>&lt;p&gt;&lt;strong&gt;Browser Router means&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Browser Router is a component in React Router used for navigation in React applications.&lt;br&gt;
   It allows your app to change pages without reloading the browser.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How Browser Router Works&lt;/strong&gt;&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%2F2wd2hj07a61kbyo03uhq.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%2F2wd2hj07a61kbyo03uhq.png" alt=" " width="335" height="120"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;Syntax *&lt;/em&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;BrowserRouter&amp;gt;
&amp;lt;Routes&amp;gt;
&amp;lt;Route path="/" element={&amp;lt;Home /&amp;gt;} /&amp;gt;
&amp;lt;Route path="/about" element={&amp;lt;About /&amp;gt;} /&amp;gt;
&amp;lt;/Routes&amp;gt;
&amp;lt;/BrowserRouter&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h2&gt;
  
  
  Navigating via links using,
&lt;/h2&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; &amp;lt;Link to="/about"&amp;gt;Go to About&amp;lt;/Link&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;Example :&lt;/strong&gt;&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%2Fyyaozndfazkf6utg1gqi.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%2Fyyaozndfazkf6utg1gqi.png" alt=" " width="647" height="414"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>react</category>
    </item>
    <item>
      <title>looping in python</title>
      <dc:creator>Abinaya V</dc:creator>
      <pubDate>Wed, 27 May 2026 09:10:16 +0000</pubDate>
      <link>https://dev.to/abinaya_v_7e6321c160544f1/looping-in-python-81m</link>
      <guid>https://dev.to/abinaya_v_7e6321c160544f1/looping-in-python-81m</guid>
      <description>&lt;p&gt;Loops are used to repeat a block of code multiple times.&lt;/p&gt;

&lt;p&gt;Python has mainly 2 types of loops:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;for loop&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;while loop &lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;1.for Loop&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;   Used when the number of iterations is known.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;br&gt;
   input:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;  for i in range(5):
     print(i)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;output:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;  0
  1
  2
  3
  4
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;2.while loop&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Used when the condition should run until it becomes false.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;example&lt;/strong&gt;&lt;br&gt;
input:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;  i = 1
  while i &amp;lt;= 5:
   print(i)
     i += 1
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;output:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1
2
3
4
5
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>python</category>
    </item>
    <item>
      <title>About Hookes in React</title>
      <dc:creator>Abinaya V</dc:creator>
      <pubDate>Mon, 18 May 2026 20:32:14 +0000</pubDate>
      <link>https://dev.to/abinaya_v_7e6321c160544f1/about-hookes-in-react-m29</link>
      <guid>https://dev.to/abinaya_v_7e6321c160544f1/about-hookes-in-react-m29</guid>
      <description>&lt;h2&gt;
  
  
  React Hooks
&lt;/h2&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;React Hooks are special functions in React that let you use state and other React features inside functional components. Before Hooks, state was mainly used in class components. Hooks made functional components more powerful and easier to write.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h2&gt;
  
  
  Why Hooks are Used
&lt;/h2&gt;

&lt;p&gt;Hooks help you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Store data in components&lt;/li&gt;
&lt;li&gt;Handle user actions&lt;/li&gt;
&lt;li&gt;Manage lifecycle methods&lt;/li&gt;
&lt;li&gt;Reuse logic&lt;/li&gt;
&lt;li&gt;Work with APIs&lt;/li&gt;
&lt;li&gt;Improve code readability&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Common React Hooks&lt;/strong&gt;&lt;br&gt;
   Used to store and update data.&lt;/p&gt;
&lt;h2&gt;
  
  
  Virtual DOM and Real DOM in React
&lt;/h2&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; **Real DOM**
  The Real DOM is the actual webpage structure shown in the browser.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;When HTML loads in the browser, the browser creates a tree structure called the DOM (Document Object Model).&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;**Example HTML**
   &amp;lt;h1&amp;gt;Hello&amp;lt;/h1&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;output&lt;/strong&gt;&lt;br&gt;
       Document&lt;br&gt;
 └── h1&lt;br&gt;
      └── "Hello"&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Problem with Real DOM&lt;/strong&gt;&lt;br&gt;
   Updating the Real DOM is:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;slow&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;expensive&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Affects performance&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Virtual DOM&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The Virtual DOM is a lightweight copy of the Real DOM used by React.&lt;br&gt;
React first updates the Virtual DOM, compares changes, then updates only the changed parts in the Real DOM.&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%2Fuxpsnpzfyht1jrw6i8g8.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%2Fuxpsnpzfyht1jrw6i8g8.png" alt=" " width="628" height="324"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Diffing Algorithm in React&lt;/strong&gt;&lt;br&gt;
     The Diffing Algorithm is the process React uses to compare:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;old virtual DOM&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;new Virtual DOM&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;and find what changed.&lt;/p&gt;

</description>
      <category>react</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Basic function in React</title>
      <dc:creator>Abinaya V</dc:creator>
      <pubDate>Thu, 14 May 2026 16:50:30 +0000</pubDate>
      <link>https://dev.to/abinaya_v_7e6321c160544f1/basic-function-in-react-3fne</link>
      <guid>https://dev.to/abinaya_v_7e6321c160544f1/basic-function-in-react-3fne</guid>
      <description>&lt;p&gt;&lt;strong&gt;App jsx&lt;/strong&gt;&lt;br&gt;
    App.jsx is the main component file in a React application created using Vite or Create React App.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why .jsx?&lt;/strong&gt;&lt;br&gt;
    .jsx means JavaScript XML&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;It allows writing HTML inside JavaScript:
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h2&gt;
  
  
  example
&lt;/h2&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; const element = &amp;lt;h1&amp;gt;Hello&amp;lt;/h1&amp;gt;;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;JSX Rules in React&lt;/strong&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1. Return Only One Parent Element

2. Close All Tags

3. Use className Instead of class

4. Use Curly Braces {} for JavaScript

5. Inline CSS Uses Object

6. Attribute Names Use camelCase

7. JavaScript Expressions Allowed

8. Components Start with Capital Letter

9. Comments in JSX

10. Use htmlFor Instead of for.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;Components in React&lt;/strong&gt;&lt;br&gt;
      Components are reusable pieces of UI in React.&lt;br&gt;
      They help divide the application into small independent parts.&lt;/p&gt;

&lt;h2&gt;
  
  
  Examples
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Header&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Navbar&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Footer&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Login Form&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Card&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>javascript</category>
      <category>react</category>
    </item>
    <item>
      <title>React in javascript</title>
      <dc:creator>Abinaya V</dc:creator>
      <pubDate>Thu, 14 May 2026 08:38:21 +0000</pubDate>
      <link>https://dev.to/abinaya_v_7e6321c160544f1/react-in-javascript-57i4</link>
      <guid>https://dev.to/abinaya_v_7e6321c160544f1/react-in-javascript-57i4</guid>
      <description>&lt;p&gt;&lt;strong&gt;React&lt;/strong&gt;&lt;br&gt;
    React is a JavaScript library used to build user interfaces, especially web applications.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;It was created by Meta (formerly Facebook).
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;Simple meaning&lt;/strong&gt;&lt;br&gt;
   JavaScript → programming language&lt;br&gt;
   React → library built using JavaScript&lt;/p&gt;

&lt;p&gt;** NPM Means:**&lt;br&gt;
    npm stands for Node Package Manager.&lt;/p&gt;

&lt;p&gt;It is used to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Install JavaScript packages/libraries&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Manage project dependencies&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Run scripts in projects&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;npm comes automatically when you install Node.js.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;MPA&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  In web development, MPA means Multi-Page Application.
&lt;/h2&gt;

&lt;p&gt;A Multi-Page Application loads a new HTML page from the server whenever the user moves to another page.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SPA&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  SPA means Single Page Application.
&lt;/h2&gt;

&lt;p&gt;A Single Page Application loads only one HTML page initially, then updates content dynamically without reloading the entire page.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Difference between libraries and frameworks?&lt;/strong&gt;&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%2Fwx8jo2h8ohkuebmeb7i1.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%2Fwx8jo2h8ohkuebmeb7i1.png" alt=" " width="693" height="290"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>react</category>
    </item>
    <item>
      <title>Promise in javascript</title>
      <dc:creator>Abinaya V</dc:creator>
      <pubDate>Thu, 07 May 2026 11:26:45 +0000</pubDate>
      <link>https://dev.to/abinaya_v_7e6321c160544f1/promise-in-javascript-158e</link>
      <guid>https://dev.to/abinaya_v_7e6321c160544f1/promise-in-javascript-158e</guid>
      <description>&lt;p&gt;A Promise in JavaScript is an object that represents the result of an asynchronous operation.&lt;/p&gt;

&lt;p&gt;It helps handle tasks like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;API calls&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;File loading&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Database requests&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Timers (setTimeout)&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Instead of waiting for the task to finish, JavaScript continues running other code.&lt;/p&gt;

&lt;h2&gt;
  
  
  Promise States
&lt;/h2&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;A Promise has 3 states:
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Pending → Initial state&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Resolved / Fulfilled → Operation successful&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Rejected → Operation failed&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Promise Methods
&lt;/h2&gt;

&lt;p&gt;Method    and      Purpose&lt;/p&gt;

&lt;p&gt;.then()    -&amp;gt;       Runs when promise is successful &lt;/p&gt;

&lt;p&gt;.catch()   -&amp;gt;       Runs when promise fails   &lt;/p&gt;

&lt;p&gt;.finally() -&amp;gt;       Runs always       &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%2F7hxwhbzqlgfcorj4bwp8.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%2F7hxwhbzqlgfcorj4bwp8.png" alt=" " width="530" height="315"&gt;&lt;/a&gt;&lt;/p&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%2F9znrj917qayfwhugn79g.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%2F9znrj917qayfwhugn79g.png" alt=" " width="402" height="151"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Callback Hell.&lt;/strong&gt;&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%2F06ou4l8lnz0y6tdd1dra.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%2F06ou4l8lnz0y6tdd1dra.png" alt=" " width="432" height="323"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;output&lt;/strong&gt;&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%2Fv947m5g9tld5df2ozjcg.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%2Fv947m5g9tld5df2ozjcg.png" alt=" " width="368" height="207"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
    </item>
    <item>
      <title>Closure in JavaScript</title>
      <dc:creator>Abinaya V</dc:creator>
      <pubDate>Wed, 06 May 2026 13:04:11 +0000</pubDate>
      <link>https://dev.to/abinaya_v_7e6321c160544f1/closure-in-javascript-17jj</link>
      <guid>https://dev.to/abinaya_v_7e6321c160544f1/closure-in-javascript-17jj</guid>
      <description>&lt;p&gt;A closure is a function that remembers and accesses variables from its outer scope even after the outer function has finished executing.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Retains access to outer function variables.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Preserves the lexical scope.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Allows data encapsulation and privacy.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Commonly used in callbacks and asynchronous code.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;For example&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  input
&lt;/h2&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%2F5qjoiwqpfqljqi7av7lv.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%2F5qjoiwqpfqljqi7av7lv.png" alt=" " width="646" height="578"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  output
&lt;/h2&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%2F2wwp34r83lwvqvwwng2u.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%2F2wwp34r83lwvqvwwng2u.png" alt=" " width="261" height="172"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
    </item>
  </channel>
</rss>
