<?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: JaneOma</title>
    <description>The latest articles on DEV Community by JaneOma (@janeoma).</description>
    <link>https://dev.to/janeoma</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%2F407769%2F4bd3f354-ac38-40e9-b072-408c7f1a7520.png</url>
      <title>DEV Community: JaneOma</title>
      <link>https://dev.to/janeoma</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/janeoma"/>
    <language>en</language>
    <item>
      <title>Learning JavaScript Simplified!</title>
      <dc:creator>JaneOma</dc:creator>
      <pubDate>Sun, 21 Feb 2021 01:49:54 +0000</pubDate>
      <link>https://dev.to/janeoma/learning-javascript-simplified-2hjn</link>
      <guid>https://dev.to/janeoma/learning-javascript-simplified-2hjn</guid>
      <description>&lt;p&gt;&lt;strong&gt;JavaScript&lt;/strong&gt; is a frontend programming language, which makes the web page interactive with HTML and CSS. In JavaScript, only one thing ever happens at a time. This means it is single-threaded.&lt;br&gt;
It is streamlined into different variables, which include;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Objects&lt;/li&gt;
&lt;li&gt;Arrays&lt;/li&gt;
&lt;li&gt;Functions&lt;/li&gt;
&lt;li&gt;Strings&lt;/li&gt;
&lt;li&gt;Numbers&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Objects
&lt;/h2&gt;

&lt;p&gt;This is a collection of data, it is a variable in JavaScript which helps the developer to group like-information together, each key has to be unique per object but values do not have to be unique. It contains curly brackets. They contain named values called properties or methods.&lt;br&gt;
Example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Objects properties                 Property value
firstName                           Mike
lastName                            John
age                                 45
hairColour                          brown
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Method&lt;/strong&gt;&lt;br&gt;
This is a function stored as a property. They are actions that can be performed on objects.&lt;br&gt;
Example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;var person = {
firstName:    "Mike",
lastName:     "John",
id      :      5566,
fullName:     function() {
 return this.firstName + "" + this.lastName;
} 
};

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Arrays
&lt;/h2&gt;

&lt;p&gt;They are single objects that contain multiple values, it is also an ordered collection of data. Array Objects reduces the time and stress of calling the code for every item in a separate variable.&lt;br&gt;
The first element of an array is index zero.&lt;br&gt;
&lt;strong&gt;Creating Arrays&lt;/strong&gt;&lt;br&gt;
Arrays contain single square brackets and elements that are separated by commas. In arrays, we can store various data types: strings, numbers, objects, and also other arrrays. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Array Methods&lt;/strong&gt;&lt;br&gt;
The &lt;strong&gt;Sort()&lt;/strong&gt;Method sorts the elements of an array in-place and returns the sorted array. The time and space complexity of the sort cannot be guaranteed as it depends on how it is implemented.&lt;br&gt;
Example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const months = ['March', 'Jan', 'Feb', 'Dec'];
months.sort();
console.log(months);
// expected output: Array ["Dec", "Feb", "Jan", "March"]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>The Technique,I Learnt about  Git</title>
      <dc:creator>JaneOma</dc:creator>
      <pubDate>Fri, 31 Jul 2020 16:06:13 +0000</pubDate>
      <link>https://dev.to/janeoma/the-technique-i-learnt-about-git-2c58</link>
      <guid>https://dev.to/janeoma/the-technique-i-learnt-about-git-2c58</guid>
      <description>&lt;p&gt;Git is an application which helps you to keep your files in the source code history.&lt;/p&gt;

&lt;p&gt;GitHub is a service, where you push your files into a Git repository. It also helps you to work with your team remotely on a project.&lt;/p&gt;

&lt;p&gt;The Technique, I learnt on Git, is how to put your project on Git repository.You can do it in this order.&lt;/p&gt;

&lt;p&gt;sign in, to your GitHub account , at the upper right corner of GitHub page.Click on + down arrow.choose New repository.&lt;/p&gt;

&lt;p&gt;On the repository name box,type in a short name you can remember easily.&lt;/p&gt;

&lt;p&gt;Add a description of your repository,for example,My first task on repository.&lt;/p&gt;

&lt;p&gt;Choose how you want your repository to be seen by viewers.&lt;/p&gt;

&lt;p&gt;Click on initialize this repository with a README.&lt;/p&gt;

&lt;p&gt;Click create repository&lt;/p&gt;

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