<?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>Forem: Jarvis-3000</title>
    <description>The latest articles on Forem by Jarvis-3000 (@jarvis3000).</description>
    <link>https://forem.com/jarvis3000</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%2F383009%2F7fdd30b0-1d98-4934-bf66-970db9331c37.jpg</url>
      <title>Forem: Jarvis-3000</title>
      <link>https://forem.com/jarvis3000</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/jarvis3000"/>
    <language>en</language>
    <item>
      <title>Question about localstorage in JavaScript.</title>
      <dc:creator>Jarvis-3000</dc:creator>
      <pubDate>Tue, 07 Jul 2020 17:29:33 +0000</pubDate>
      <link>https://forem.com/jarvis3000/question-about-localstorage-in-javascript-5bh5</link>
      <guid>https://forem.com/jarvis3000/question-about-localstorage-in-javascript-5bh5</guid>
      <description>&lt;p&gt;Hey guys,&lt;br&gt;
I want to know that,&lt;br&gt;
As we use localstorage in JavaScript for store the data at client-side.&lt;/p&gt;

&lt;p&gt;So, can we do the same thing for mobile like android?&lt;/p&gt;

&lt;p&gt;Can we use localstorage in android?&lt;/p&gt;

</description>
      <category>help</category>
    </item>
    <item>
      <title>Enable copy,cut,paste options in a browser</title>
      <dc:creator>Jarvis-3000</dc:creator>
      <pubDate>Fri, 03 Jul 2020 16:31:58 +0000</pubDate>
      <link>https://forem.com/jarvis3000/enable-copy-cut-paste-options-in-a-browser-3hdk</link>
      <guid>https://forem.com/jarvis3000/enable-copy-cut-paste-options-in-a-browser-3hdk</guid>
      <description>&lt;p&gt;We all must have seen that in some websites we can't copy, paste, or cut.&lt;/p&gt;

&lt;p&gt;Go through below document&lt;br&gt;
You will crack it.&lt;/p&gt;




&lt;p&gt;&lt;a href="https://www.linkedin.com/feed/update/urn:li:activity:6684854314546024448"&gt;https://www.linkedin.com/feed/update/urn:li:activity:6684854314546024448&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Use ";" or not in Javascript</title>
      <dc:creator>Jarvis-3000</dc:creator>
      <pubDate>Tue, 30 Jun 2020 12:26:07 +0000</pubDate>
      <link>https://forem.com/jarvis3000/use-or-not-in-javascript-59jh</link>
      <guid>https://forem.com/jarvis3000/use-or-not-in-javascript-59jh</guid>
      <description>&lt;p&gt;Almost all programming languages have a concept of semicolon, but in javascript, it is in different manner.&lt;/p&gt;

&lt;p&gt;We think that ";" is optional in JS, but it is not like that.&lt;/p&gt;

&lt;p&gt;If we don't put ";" at the end of the statement, the ASI concept of JS will automatically insert ";" but not places in source code.&lt;/p&gt;

&lt;p&gt;BUT, &lt;br&gt;
In JS at certain places, it is mandatory to put semicolons manually otherwise the program will go wrong.&lt;/p&gt;







&lt;p&gt;Semicolons and "Automatic Semicolon Insertion" are two of the most misunderstood topics in JavaScript. &lt;/p&gt;

&lt;p&gt;For more deeply knowledge go to below link&lt;/p&gt;

&lt;p&gt;&lt;a href="https://medium.com/javascript-in-plain-english/automatic-semicolon-insertion-asi-in-javascript-made-simple-19c48d179494"&gt;https://medium.com/javascript-in-plain-english/automatic-semicolon-insertion-asi-in-javascript-made-simple-19c48d179494&lt;/a&gt;&lt;/p&gt;

</description>
      <category>asi</category>
    </item>
    <item>
      <title>Difference between function declaration and function expression </title>
      <dc:creator>Jarvis-3000</dc:creator>
      <pubDate>Tue, 26 May 2020 11:22:31 +0000</pubDate>
      <link>https://forem.com/jarvis3000/difference-between-function-declaration-and-function-expression-2lap</link>
      <guid>https://forem.com/jarvis3000/difference-between-function-declaration-and-function-expression-2lap</guid>
      <description>&lt;p&gt;A very important and confusing thing&lt;/p&gt;

&lt;p&gt;//Function declarations load before any code execution&lt;br&gt;
function foo() { return 5; }&lt;/p&gt;

&lt;p&gt;//Anonymous function expression &lt;br&gt;
//Load only when the interpreter reaches that line&lt;br&gt;
var foo = function() { return 5; }&lt;/p&gt;

&lt;p&gt;//Named function expression&lt;br&gt;
var foo = function foo() { return 5; }&lt;/p&gt;

&lt;p&gt;//Example: Function Expression&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;      alert(foo());    // ERROR! foo wasn't loaded yet
      var foo = function() { return 5; } 
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;//Example: Function Declaration&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;      alert(foo());    // Alerts 5. loaded before any code can run.
      function foo() { return 5; }
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

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