<?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: Akbar Ali</title>
    <description>The latest articles on DEV Community by Akbar Ali (@akbar_ali_581695961851745).</description>
    <link>https://dev.to/akbar_ali_581695961851745</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%2F2429756%2F61e01b0e-5509-4e58-aacf-a461c58c1f04.jpg</url>
      <title>DEV Community: Akbar Ali</title>
      <link>https://dev.to/akbar_ali_581695961851745</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/akbar_ali_581695961851745"/>
    <language>en</language>
    <item>
      <title>What are Import and Export in Javascript .</title>
      <dc:creator>Akbar Ali</dc:creator>
      <pubDate>Thu, 06 Feb 2025 10:12:42 +0000</pubDate>
      <link>https://dev.to/akbar_ali_581695961851745/what-are-import-and-export-in-javascript--4hm1</link>
      <guid>https://dev.to/akbar_ali_581695961851745/what-are-import-and-export-in-javascript--4hm1</guid>
      <description>&lt;p&gt;Export: This statement is used to enable somethings (function,values,variables etc) to be used in other files.&lt;/p&gt;

&lt;p&gt;e.g:&lt;/p&gt;

&lt;p&gt;src/utils&lt;/p&gt;

&lt;p&gt;export let APIKEY = "hhjdjhddfeuikvjkdkjdfhkdfghkdjfhgkfd";&lt;/p&gt;

&lt;p&gt;src/App.js&lt;/p&gt;

&lt;p&gt;import "./styles.css";&lt;/p&gt;

&lt;p&gt;import { APIKEY } from "./utils/apiKey";&lt;/p&gt;

&lt;p&gt;export default function App() {&lt;/p&gt;

&lt;p&gt;console.log( APIKEY );&lt;/p&gt;

&lt;p&gt;return (&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;div className="App"&amp;gt;

  &amp;lt;h1&amp;gt;Hello CodeSandbox&amp;lt;/h1&amp;gt;

  &amp;lt;h2&amp;gt;Start editing to see some magic happen!&amp;lt;/h2&amp;gt;

&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;);&lt;/p&gt;

&lt;p&gt;}&lt;/p&gt;

&lt;p&gt;There are following two types of export statements:&lt;/p&gt;

&lt;p&gt;1.Named Export (as I used in above code): There might be multiple Named Export statements for exporting multiple values,functions,variables etc.&lt;/p&gt;

&lt;p&gt;2.Default Export:There must be only one export default value in whole file or component for exporting value,variable,function etc.Because it actually tells that there would that one default value of that component.&lt;/p&gt;

&lt;p&gt;Import:This statement enable a file or component to get some values,variables,functions,objects etc from another file/component .&lt;/p&gt;

&lt;p&gt;One important thing we must have to know in case of importing something it is that when we importing Named Export Values then we should have to wrap into object and must use the same names as of variable,functions,values as used in file in which they are created and in case of default export we can give any name to value to which we are importing and we don't need to wrap them in object.&lt;/p&gt;

&lt;p&gt;e.g;&lt;/p&gt;

&lt;p&gt;// importing named exports&lt;/p&gt;

&lt;p&gt;src/utils&lt;/p&gt;

&lt;p&gt;export let APIKEY = "hhjdjhddfeuikvjkdkjdfhkdfghkdjfhgkfd";&lt;/p&gt;

&lt;p&gt;src/App.js&lt;/p&gt;

&lt;p&gt;import "./styles.css";&lt;/p&gt;

&lt;p&gt;import { APIKEY } from "./utils/apiKey";&lt;/p&gt;

&lt;p&gt;export default function App() {&lt;/p&gt;

&lt;p&gt;console.log( APIKEY );&lt;/p&gt;

&lt;p&gt;return (&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;div className="App"&amp;gt;

  &amp;lt;h1&amp;gt;Hello CodeSandbox&amp;lt;/h1&amp;gt;

  &amp;lt;h2&amp;gt;Start editing to see some magic happen!&amp;lt;/h2&amp;gt;

&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;);&lt;/p&gt;

&lt;p&gt;}&lt;/p&gt;

&lt;p&gt;// importing Default exports&lt;/p&gt;

&lt;p&gt;src/utils&lt;/p&gt;

&lt;p&gt;export default  "hhjdjhddfeuikvjkdkjdfhkdfghkdjfhgkfd";&lt;/p&gt;

&lt;p&gt;src/App.js&lt;/p&gt;

&lt;p&gt;import "./styles.css";&lt;/p&gt;

&lt;p&gt;import ApiKey from "./utils/apiKey";&lt;/p&gt;

&lt;p&gt;export default function App() {&lt;/p&gt;

&lt;p&gt;console.log( ApiKey );&lt;/p&gt;

&lt;p&gt;return (&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;div className="App"&amp;gt;

  &amp;lt;h1&amp;gt;Hello CodeSandbox&amp;lt;/h1&amp;gt;

  &amp;lt;h2&amp;gt;Start editing to see some magic happen!&amp;lt;/h2&amp;gt;

&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;);&lt;/p&gt;

&lt;p&gt;}&lt;/p&gt;

</description>
    </item>
    <item>
      <title>A brief Introduction of HTML.</title>
      <dc:creator>Akbar Ali</dc:creator>
      <pubDate>Mon, 13 Jan 2025 17:22:46 +0000</pubDate>
      <link>https://dev.to/akbar_ali_581695961851745/a-brief-introduction-of-html-44ik</link>
      <guid>https://dev.to/akbar_ali_581695961851745/a-brief-introduction-of-html-44ik</guid>
      <description>&lt;p&gt;Let me break the term HTML(HyperText Markup Language) in one by one and define them .&lt;/p&gt;

&lt;p&gt;1.HyperText means the text that move us to another text or page when we click on it like when we click on &lt;a href="http://www.google.com" rel="noopener noreferrer"&gt;www.google.com&lt;/a&gt; then it move us onto Google's website.&lt;/p&gt;

&lt;p&gt;2.Markup means to wrap up or do mark something like in normal English language we wrap up or marked up some text in double quotes to make it some meaningful or some attractable e.g; "Hello lazy programmers" so this makes some focus on itself to get focus of reader and much like it we wrap up or markup some content inside different tags to make some meaningful element e.g&lt;br&gt;
 "&lt;/p&gt;
&lt;h1&gt;Wellcome&lt;/h1&gt;",&lt;br&gt;
&lt;p&gt;Some text goes here&lt;/p&gt;,&lt;br&gt;
welcome world&lt;br&gt;
  so these are some examples which make some meaningful content on our web pages.

&lt;p&gt;let summarize it hypertext is a text that move us to another text or page when we click on it and markup is wrapping some content to inside some tags.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>How Does actually the Internet work:</title>
      <dc:creator>Akbar Ali</dc:creator>
      <pubDate>Fri, 10 Jan 2025 15:15:23 +0000</pubDate>
      <link>https://dev.to/akbar_ali_581695961851745/how-does-actually-the-internet-work-5dff</link>
      <guid>https://dev.to/akbar_ali_581695961851745/how-does-actually-the-internet-work-5dff</guid>
      <description>&lt;p&gt;Hi,&lt;/p&gt;

&lt;p&gt;Actually the "Internet" is essentially a network that connects computers across the globe, allowing them to communicate with each other through a system of interconnected networks; it's considered a network of networks, enabling users to access information and services from various devices around the world.&lt;/p&gt;

&lt;p&gt;When they connected to each other they share data among each other .So there are some terms that are used to understand how the internet works(How the data is shared among different computers).&lt;/p&gt;

&lt;p&gt;1.Web browser.&lt;/p&gt;

&lt;p&gt;2.Client side.&lt;/p&gt;

&lt;p&gt;3.Server side.&lt;/p&gt;

&lt;p&gt;4.ISP(Internet Service Provider).&lt;/p&gt;

&lt;p&gt;5.DNS(Domain Name System).&lt;/p&gt;

&lt;p&gt;6.IP address(Internet Protocol address).&lt;/p&gt;

&lt;p&gt;So lets understand complete working of Internet through these terms:&lt;/p&gt;

&lt;p&gt;When we search something on a software (Browser) like Google.com then the Browser sends this request by using ISP and as you know there are millions of computers that are working on internet then how does it is identified to access that particular requested computer so the answer is actually the ISP takes the IP address of requested website computer and sends it to the DNS and DNS is actually like a telephone numbers directory which has millions computers IP addresses so when ISP sends IP address to DNS then DNS finds it and connects our browser to a computer(Server) corresponding to this IP address .So when the Server and Client computer is connected then Server shares the files that our computer Browser requests like in our case we searched about Google.com so it will provide us the access to visit the Google.com.&lt;/p&gt;

&lt;p&gt;And all these Computers are connected through tone of wires that are expanded across the world.&lt;/p&gt;

&lt;p&gt;So this is actually some process through which our Internet works that I got while exploring about the Web Development .&lt;/p&gt;

&lt;p&gt;I hope so it is Information might helpful about the topic that I mentioned above and there may be some improvement's by your side so I will feel motivation regarding taking your feedback.&lt;/p&gt;

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