<?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: DevCharlnz</title>
    <description>The latest articles on DEV Community by DevCharlnz (@iam_strawb).</description>
    <link>https://dev.to/iam_strawb</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%2F441156%2F236c29e1-fcdd-4f6f-a7e7-6fe6bf104377.jpg</url>
      <title>DEV Community: DevCharlnz</title>
      <link>https://dev.to/iam_strawb</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/iam_strawb"/>
    <language>en</language>
    <item>
      <title>MANY WHO STARTED THE DEV JOURNEY HAS GIVEN UP. I JUST FOCUSED ON REACT</title>
      <dc:creator>DevCharlnz</dc:creator>
      <pubDate>Mon, 13 May 2024 18:04:57 +0000</pubDate>
      <link>https://dev.to/iam_strawb/many-who-started-the-dev-journey-has-given-up-i-just-focused-on-react-18om</link>
      <guid>https://dev.to/iam_strawb/many-who-started-the-dev-journey-has-given-up-i-just-focused-on-react-18om</guid>
      <description></description>
    </item>
    <item>
      <title>LEARNING JAVASCRIPT ARRAY IN 2023 FROM THE SCRATCH</title>
      <dc:creator>DevCharlnz</dc:creator>
      <pubDate>Wed, 23 Aug 2023 12:03:44 +0000</pubDate>
      <link>https://dev.to/iam_strawb/learning-javascript-array-in-2023-from-the-scratch-22m7</link>
      <guid>https://dev.to/iam_strawb/learning-javascript-array-in-2023-from-the-scratch-22m7</guid>
      <description>&lt;p&gt;In JavaScript, an array is a data structure that stores a collection of elements. Arrays are objects, and they have several properties and methods that can be used to access and manipulate their elements.&lt;/p&gt;

&lt;p&gt;Table of Content: &lt;/p&gt;

&lt;p&gt;What is an Array in JS&lt;br&gt;
Creating an Array&lt;br&gt;
How to access an element from an array in JS&lt;br&gt;
How to add an element to an array&lt;br&gt;
How to remove an element from an array&lt;br&gt;
Array Methods&lt;/p&gt;

&lt;p&gt;Prerequisite: Basic JavaScript knowledge is required for this lesson such as ES6 let and const variable.&lt;/p&gt;

&lt;p&gt;What is an Array in JS&lt;br&gt;
An array data structure is widely used in programming languages that support it. In this article, you’ll learn how to create an array and how to manipulate and access them.&lt;/p&gt;

&lt;p&gt;An array can be created either using the array constructors or array literals. But before we jump into how to create your first array let's look at what an array is.&lt;/p&gt;

&lt;p&gt;An array consists of a pair of square brackets [ ] containing elements separated by “,”. The elements could be of any data type. &lt;/p&gt;

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

&lt;p&gt;The element, which is the content of an array is known as an index. For instance, the string ‘lettuce’ occupies the first position but will be referred to index 0, ‘broccoli ’ is at index 1, while ‘lemon’ occupies the 5th index. I.e. &lt;/p&gt;

&lt;p&gt;Lettuce is index 0,&lt;br&gt;
Broccoli is index 1,&lt;br&gt;
Centurion is index 2,&lt;br&gt;
Chocolate is index 3, &lt;br&gt;
Peanut is at index 4, &lt;br&gt;
Lemon is at index 5…&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                LET’S CREATE AN ARRAY
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;p&gt;The most common way of creating an array is by assigning an array value to a variable.&lt;/p&gt;

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

&lt;p&gt;The elements are separated with comma(s) in the square bracket and assigned to a variable.&lt;/p&gt;

&lt;p&gt;The constructor method can also be used to create an array;&lt;/p&gt;

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

&lt;p&gt;let us check it out.&lt;/p&gt;

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

&lt;p&gt;In this case, index 5 would be undefined because nothing is assigned therein.&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    **How to access an element from an array in JS**
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;p&gt;The square bracket [ ] is used to access elements in the array.&lt;/p&gt;

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

&lt;p&gt;The [0 ], [1 ], [2 ], [3 ], [4 ], [5 ],  will target the index of the element in the in the array square bracket.&lt;/p&gt;

&lt;p&gt;You can also use the keyword (.length) to know the total number of elements in an array.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--MjWv_-Ps--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/23shjomya1p92v80r4mp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--MjWv_-Ps--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/23shjomya1p92v80r4mp.png" alt="Image description" width="512" height="149"&gt;&lt;/a&gt;&lt;br&gt;
You can also use regular for loop to access the elements in an array or any  other loop method.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--rVjCBJsm--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/0rs2khrzwokg5fa9vmgc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--rVjCBJsm--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/0rs2khrzwokg5fa9vmgc.png" alt="Image description" width="800" height="461"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; **How to Add an Element to an Array in JavaScript**
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;p&gt;The push() method is used to add an element to the end of an array. While, unshift() is used to add an element to the beginning of an array. Lets see what that looks like.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--43rdJQsp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/p0k6krqjb3tok58iv7e0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--43rdJQsp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/p0k6krqjb3tok58iv7e0.png" alt="Image description" width="800" height="716"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;     **How to Remove an Element from an Array**
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;p&gt;You can remove an element from the end of an array by using the pop() method and remove an element from the beginning using the shift() method.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Oi1AnZFK--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/wybffanvypd9uho0666c.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Oi1AnZFK--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/wybffanvypd9uho0666c.png" alt="Image description" width="800" height="410"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;          **Array Method**
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;p&gt;Here are some common array methods:&lt;/p&gt;

&lt;p&gt;sort()        slice()       find()&lt;br&gt;
reverse()     splice()      findIndex()&lt;br&gt;
pop()         isArray()     includes()&lt;br&gt;
push()        indexOf()     some()&lt;br&gt;
shift()       lastIndex()    forEach()&lt;br&gt;
unshift()     concat()        every()&lt;br&gt;
entries()     valueOf()       join()&lt;br&gt;
toString()    filter()      fill()&lt;/p&gt;

&lt;p&gt;Array Sort()&lt;/p&gt;

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

&lt;p&gt;Array reverse()&lt;/p&gt;

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

&lt;p&gt;Array concat()&lt;/p&gt;

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

&lt;p&gt;Array Join()&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--3HMAd0q0--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/15qnd9bluhhd2zyfz361.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--3HMAd0q0--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/15qnd9bluhhd2zyfz361.png" alt="Image description" width="800" height="290"&gt;&lt;/a&gt;&lt;br&gt;
Array Slice() and Splice()&lt;/p&gt;

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

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;output// ['Evarian', 23]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Array include()&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--XwhrXaTD--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/rbyhkczn9q9jxqym5q15.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--XwhrXaTD--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/rbyhkczn9q9jxqym5q15.png" alt="Image description" width="800" height="305"&gt;&lt;/a&gt;&lt;br&gt;
Array isArray()&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--NgGCMd-y--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/807o74jqafarffc9skxf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--NgGCMd-y--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/807o74jqafarffc9skxf.png" alt="Image description" width="800" height="512"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Array fill()&lt;/p&gt;

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

&lt;p&gt;Array forEach()&lt;/p&gt;

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

&lt;p&gt;Conclusion&lt;/p&gt;

&lt;p&gt;An array is a data structure that allows you to store multiple values in a single variable.&lt;br&gt;
Arrays are indexed, which means that each value in the array has a unique number associated with it.&lt;br&gt;
The first value in the array has an index of 0, the second value has an index of 1, and so on.&lt;br&gt;
You can access the values in an array by their index. For example, to access the first value in the array, you would use the following syntax:&lt;br&gt;
array[0]&lt;/p&gt;

&lt;p&gt;You can also add, remove, and update values in an array.&lt;br&gt;
JavaScript provides a number of built-in methods for working with arrays, such as push(), pop(), shift(), and unshift().&lt;/p&gt;

&lt;p&gt;Here are some of the built-in methods for working with arrays in JavaScript:&lt;br&gt;
push(): Adds a new value to the end of the array.&lt;br&gt;
pop(): Removes the last value from the array.&lt;br&gt;
shift(): Removes the first value from the array.&lt;br&gt;
unshift(): Adds a new value to the beginning of the array.&lt;br&gt;
indexOf(): Returns the index of the first occurrence of a value in the array.&lt;br&gt;
lastIndexOf(): Returns the index of the last occurrence of a value in the array.&lt;br&gt;
slice(): Creates a new array that contains a slice of the original array.&lt;br&gt;
concat(): Combines two or more arrays into a new array.&lt;br&gt;
sort(): Sorts the array in ascending or descending order.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>frontend</category>
      <category>softwaredevelopment</category>
    </item>
    <item>
      <title>PLEASE DONT IGNORE</title>
      <dc:creator>DevCharlnz</dc:creator>
      <pubDate>Fri, 30 Oct 2020 18:39:53 +0000</pubDate>
      <link>https://dev.to/iam_strawb/please-dont-ignore-4hh8</link>
      <guid>https://dev.to/iam_strawb/please-dont-ignore-4hh8</guid>
      <description>&lt;p&gt;PLEASE KINDLY HELP ME OUT HERE , MY BROWSER...GOOGLE CHROME DOESNT RENDER MY JAVASCRIPT. ALL MY PROJECTS DONT RENDER ON IT BUT IT DOES WHEN TESTED ON CODEPEN.IO&lt;br&gt;
PLS DO I NEED TO INSTALL SOMETHING TO ENABLE IT OR WHAT IS STOP PING OR INHIBITING IT.&lt;/p&gt;

&lt;p&gt;HELP WITH SOLUTIONS&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>googlechrome</category>
      <category>errors</category>
    </item>
    <item>
      <title>&lt;h3&gt;new in web development.&lt;/h3&gt;I have finished learning html. How do I start the task of building a website. And hosting it.</title>
      <dc:creator>DevCharlnz</dc:creator>
      <pubDate>Thu, 06 Aug 2020 17:59:26 +0000</pubDate>
      <link>https://dev.to/iam_strawb/h3-new-in-web-development-h3-i-have-finished-learning-html-how-do-i-start-the-task-of-building-a-website-and-hosting-it-10nd</link>
      <guid>https://dev.to/iam_strawb/h3-new-in-web-development-h3-i-have-finished-learning-html-how-do-i-start-the-task-of-building-a-website-and-hosting-it-10nd</guid>
      <description></description>
    </item>
  </channel>
</rss>
