<?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: Shukroh </title>
    <description>The latest articles on DEV Community by Shukroh  (@feyisayo_37).</description>
    <link>https://dev.to/feyisayo_37</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%2F2529674%2Ff78df183-8a3d-4d15-bc50-de6bacef594d.jpg</url>
      <title>DEV Community: Shukroh </title>
      <link>https://dev.to/feyisayo_37</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/feyisayo_37"/>
    <language>en</language>
    <item>
      <title>JavaScript</title>
      <dc:creator>Shukroh </dc:creator>
      <pubDate>Fri, 31 Jan 2025 18:33:34 +0000</pubDate>
      <link>https://dev.to/feyisayo_37/javascript-3nno</link>
      <guid>https://dev.to/feyisayo_37/javascript-3nno</guid>
      <description>&lt;p&gt;HTTP methods and HTTP status code.&lt;/p&gt;

&lt;p&gt;HTTP methods refer to the action a client wants to perform on a resource (like: Get, Post, Put, Delete)&lt;br&gt;
Get: retrieves data from the server&lt;br&gt;
Post: send data to a server to create a new resource &lt;br&gt;
Put:updates an existing resource on a server &lt;br&gt;
Delete: deletes a resource on a server.&lt;/p&gt;

&lt;p&gt;HTTP status code is a number sent by server in response to a request, indicating whether the request was successful or not and providing additional information about the outcome. HTTP status code has the following categories; &lt;br&gt;
. 1XX(informational): Indicates that the request has been received and the server is processing it.&lt;br&gt;
. 2XX( success): The request was successful &lt;br&gt;
.3XX(redirection): Further action is needed to complete the request, like redirecting to a different URL.&lt;br&gt;
.4xx(client error): An error occurred due to the client request, such as a bad URL or invalid credentials &lt;br&gt;
.5XX(server error): An error occurred on the server preventing the request from being fulfilled &lt;/p&gt;

&lt;p&gt;HOW HTTP METHODS AND HTTP STATUS CODES WORKS TOGETHER &lt;br&gt;
When a client send a request to a server, the server, the server uses the HTTP method to determine what action to perform. The server sends a response back to the client, which includes an HTTP status code to indicate the outcome of the request. &lt;br&gt;
HTTP method and HTTP status codes are both important part of the web, which allows clients and server to communicate with eachother.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>What is the</title>
      <dc:creator>Shukroh </dc:creator>
      <pubDate>Thu, 05 Dec 2024 19:12:43 +0000</pubDate>
      <link>https://dev.to/feyisayo_37/what-is-the-lfp</link>
      <guid>https://dev.to/feyisayo_37/what-is-the-lfp</guid>
      <description>&lt;p&gt;DIFFERENCES BETWEEN VAR,LET AND CONST&lt;/p&gt;

&lt;p&gt;Var: car can be used for function scoped variable that can be reassigned and updated with the same scope. Bar is hoisted that is, it can be accessed before it is declared &lt;br&gt;
Let: let can be used for block scoped variables that can be reassigned but cannot be redeclared.&lt;br&gt;
Const: const can be used for block scoped variables that cannot be reassigned. &lt;/p&gt;

&lt;p&gt;WHY IS CONST USED THE MOST IN JAVASCRIPT &lt;br&gt;
Const is used because whenever a variable is not reassigned in its scope. This makes the intent clear that a variables type can never change in the cas of primitive.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
