<?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: Cliff Gor</title>
    <description>The latest articles on DEV Community by Cliff Gor (@cliffgor).</description>
    <link>https://dev.to/cliffgor</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%2F160999%2Fa74a7e37-1145-4970-96f8-92a10997e50e.png</url>
      <title>DEV Community: Cliff Gor</title>
      <link>https://dev.to/cliffgor</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/cliffgor"/>
    <language>en</language>
    <item>
      <title>A Beginner's Guide to ARIA: Making Your Web Content Accessible</title>
      <dc:creator>Cliff Gor</dc:creator>
      <pubDate>Thu, 27 Apr 2023 19:19:51 +0000</pubDate>
      <link>https://dev.to/cliffgor/a-beginners-guide-to-aria-making-your-web-content-accessible-3acg</link>
      <guid>https://dev.to/cliffgor/a-beginners-guide-to-aria-making-your-web-content-accessible-3acg</guid>
      <description>&lt;p&gt;As the web continues to become an increasingly important part of our lives, it's essential that everyone has access to the content on it. This includes people with disabilities, who may use assistive technologies like screen readers or keyboard-only navigation to access the web. To make sure that your website is accessible to everyone, you can use ARIA (Accessible Rich Internet Applications) attributes. In this beginner's guide, we'll explain what ARIA is and how to use it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is ARIA?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;ARIA is a set of attributes that you can add to your HTML tags to make your web content more accessible. ARIA was developed by the W3C (World Wide Web Consortium) to provide a way for web developers to create accessible web applications. ARIA attributes can be used to describe the role, state, and properties of elements on a web page, and can help assistive technologies like screen readers and keyboard-only users understand the content on the page.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How to Use ARIA&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Using &lt;strong&gt;ARIA&lt;/strong&gt; is fairly straightforward. You simply add ARIA attributes to the HTML tags that you want to make more accessible. There are a number of different ARIA attributes available, but some of the most common ones include:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;aria-label&lt;/strong&gt;: This attribute can be used to provide a text label for an element that doesn't have any visible text. For example, if you have an image that doesn't have a text description, you can use aria-label to provide a description that will be read by screen readers.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Example:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;img src="example.jpg" alt="Example" aria-label="A scenic view of a lake and mountains"&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;ol&gt;
&lt;li&gt; aria-labelledby: This attribute can be used to associate an element with a text label that is located elsewhere on the page. This can be useful for situations where you want to provide more detailed information about an element.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Example:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; &amp;lt;h2 id="heading1"&amp;gt;Welcome to our website!&amp;lt;/h2&amp;gt;
&amp;lt;button aria-labelledby="heading1"&amp;gt;Learn More&amp;lt;/button&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;ol&gt;
&lt;li&gt; aria-describedby: This attribute can be used to associate an element with a longer description of what it does or how it works. This can be useful for providing additional context or instructions for an element.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Example:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    &amp;lt;button aria-describedby="instructions"&amp;gt;Submit&amp;lt;/button&amp;gt;
&amp;lt;p id="instructions"&amp;gt;Click this button to submit your information.&amp;lt;/p&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;ol&gt;
&lt;li&gt; aria-hidden: This attribute can be used to hide an element from assistive technologies. This can be useful for elements that are decorative or that don't provide any useful information to users.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Example:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;span aria-hidden="true"&amp;gt;X&amp;lt;/span&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

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

&lt;p&gt;Making your web content accessible to everyone is important, and using ARIA attributes can help you achieve this goal. By adding ARIA attributes to your HTML tags, you can provide additional information about the role, state, and properties of elements on your web page, making it easier for people with disabilities to navigate and understand your content. Start using ARIA today and help make the web a more inclusive place for everyone.&lt;/p&gt;

</description>
      <category>ariaattributes</category>
      <category>webaccessibility</category>
      <category>ariaaccessibility</category>
      <category>aria</category>
    </item>
    <item>
      <title>Monday Express Day [5]</title>
      <dc:creator>Cliff Gor</dc:creator>
      <pubDate>Mon, 26 Oct 2020 07:05:26 +0000</pubDate>
      <link>https://dev.to/cliffgor/monday-express-day-5-5bfc</link>
      <guid>https://dev.to/cliffgor/monday-express-day-5-5bfc</guid>
      <description>&lt;p&gt;Hello, welcome to the fifth BigO notation challenge where we will be solving a few challenges.&lt;/p&gt;

&lt;p&gt;Goodmorning again welcome to #mondayexpress, today we will be heading over to our exercisim team where each week I share new challenges to fix. &lt;/p&gt;

&lt;h2&gt;
  
  
  Here is today's challenge
&lt;/h2&gt;

&lt;p&gt;Introduction&lt;br&gt;
Implement the accumulate operation, which, given a collection and an operation to perform on each element of the collection, returns a new collection containing the result of applying that operation to each element of the input collection.&lt;/p&gt;

&lt;p&gt;Given the collection of numbers:&lt;/p&gt;

&lt;p&gt;1, 2, 3, 4, 5&lt;br&gt;
And the operation:&lt;/p&gt;

&lt;p&gt;square a number (x =&amp;gt; x * x)&lt;br&gt;
Your code should be able to produce the collection of squares:&lt;/p&gt;

&lt;p&gt;1, 4, 9, 16, 25&lt;br&gt;
Check out the test suite to see the expected function signature.&lt;/p&gt;

&lt;p&gt;Restrictions&lt;br&gt;
Keep your hands off that collect/map/fmap/whatchamacallit functionality provided by your standard library! Solve this one yourself using other basic tools instead.&lt;/p&gt;

&lt;p&gt;Setup&lt;br&gt;
Go through the setup instructions for Javascript to install the necessary dependencies:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://exercism.io/tracks/javascript/installation"&gt;https://exercism.io/tracks/javascript/installation&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Requirements&lt;br&gt;
Please cd into exercise directory before running all below commands.&lt;/p&gt;

&lt;p&gt;Install assignment dependencies:&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;&lt;code&gt;$ npm install&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;Making the test suite pass&lt;br&gt;
Execute the tests with:&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;&lt;code&gt;$ npm test&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;In the test suites all tests but the first have been skipped.&lt;/p&gt;

&lt;p&gt;Once you get a test passing, you can enable the next one by changing xtest to test.&lt;/p&gt;

&lt;p&gt;Submitting Solutions&lt;br&gt;
Once you have a solution ready, you can submit it using:&lt;/p&gt;

&lt;p&gt;exercism submit accumulate.js&lt;br&gt;
Submitting Incomplete Solutions&lt;br&gt;
It's possible to submit an incomplete solution so you can see how others have completed the exercise.&lt;/p&gt;

&lt;p&gt;To Join click on the link here &lt;a href="https://teams.exercism.io/teams/4mK15pBixpJyy3K63eJe3RZh/join"&gt;Monday Express&lt;/a&gt;. If you need more languages covered you can always reach out&lt;/p&gt;

&lt;p&gt;Let's Join and solve these challenges.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>codechallenges</category>
      <category>mondayexpress</category>
      <category>devcirles</category>
    </item>
    <item>
      <title>Monday Express [ Day 4 ]</title>
      <dc:creator>Cliff Gor</dc:creator>
      <pubDate>Mon, 19 Oct 2020 08:36:13 +0000</pubDate>
      <link>https://dev.to/cliffgor/monday-express-day-4-3hbm</link>
      <guid>https://dev.to/cliffgor/monday-express-day-4-3hbm</guid>
      <description>&lt;p&gt;Hello, welcome to the fourth BigO notation challenge where we will be solving a few challenges.&lt;/p&gt;

&lt;p&gt;Goodmorning again welcome to #mondayexpress, today we will be heading over to our exercisim team where each week I share new challenges to fix. Thank you to Claud and Larry for solving our first challenge&lt;/p&gt;

&lt;p&gt;To Join click on the link here &lt;a href="https://teams.exercism.io/teams/4mK15pBixpJyy3K63eJe3RZh/join"&gt;Monday Express&lt;/a&gt;. If you need more languages covered you can always reach out&lt;/p&gt;

&lt;p&gt;Let's Join and solve these challenges.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>codechallenges</category>
      <category>mondayexpress</category>
      <category>devcirles</category>
    </item>
    <item>
      <title>Disrupting Supply chain Management As A Software Engineer</title>
      <dc:creator>Cliff Gor</dc:creator>
      <pubDate>Fri, 09 Oct 2020 10:25:40 +0000</pubDate>
      <link>https://dev.to/cliffgor/disrupting-supply-chain-management-as-a-software-engineer-2id7</link>
      <guid>https://dev.to/cliffgor/disrupting-supply-chain-management-as-a-software-engineer-2id7</guid>
      <description>&lt;h2&gt;
  
  
  What is Supply Chain Management?
&lt;/h2&gt;

&lt;p&gt;According to &lt;a href="https://www.investopedia.com/terms/s/scm.asp#:~:text=Supply%20chain%20management%20is%20the,competitive%20advantage%20in%20the%20marketplace"&gt;Investopedia&lt;/a&gt;, Supply Chain Management (SCM) is the management of the flow of goods and services and includes all processes that transform raw materials into final products. It involves the active streamlining of a business's supply-side activities to maximize customer value and gain a competitive advantage in the marketplace.&lt;/p&gt;

&lt;h2&gt;
  
  
  How do Software Engineers come in place? Software Engineers and Supply Chain Management:
&lt;/h2&gt;

&lt;p&gt;The first time I heard about supply chain management was at work when I was on boarded as a developer at&lt;a href="https://www.xetova.com/"&gt;xetova&lt;/a&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;xetova was launched in 2019 by Bramuel Mwalo with the vision of providing holistic, intelligent and efficient solutions to Africa’s large scale procurement space. xetova was born from his passion in researching and designing solutions that enhance SME inclusion, access to finance, growth acceleration and market inclusion. Comprising a dynamic team with collective experience from various industries, xetova is focused on innovating new business frontiers and strategies in the procurement marketplace to be holistic, collaborative, inclusive and simple.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Two weeks later the company announced that all members were going to have a crash course on supply chain management. I was so excited that I went to take a course on LinkedIn just to get a better understanding of hat Supply Chain Management(SCM) is all about. &lt;/p&gt;

&lt;h2&gt;
  
  
  In the developer context
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Supply Chain Management from my context&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We develop applications either as a freelancer or at a company and sometimes it takes time to scale. What if we could use SCM as an advantage to scale our applications.&lt;/p&gt;

&lt;h2&gt;
  
  
  There are key pillars of SCM
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Procurement - &lt;br&gt;
Through procurement, we can for our development process, i.e.&lt;br&gt;
Your best cloud platform&lt;br&gt;
The coding language used to build your application&lt;br&gt;
How much developer time would you spend on it&lt;br&gt;
How many developers would you need in your team&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Manufacturing and Operations- &lt;br&gt;
As it says, this is the point where all decisions are made and you now start working on your product.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Logistics and Transportation-&lt;br&gt;
After developing the product you can’t push it to production like that. You have to write tests, know how your users will get to use the product. Should you do marketing of the product? Does the product require onboarding? These are the things you consider before go to market&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Go to market &lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Once you consider all these key pillars you are guaranteed to a successful product that will scale and will have your Product and Development Team Stress-Free with less work.&lt;/p&gt;

</description>
      <category>procurement</category>
      <category>sofwaredevelopment</category>
      <category>ai</category>
    </item>
    <item>
      <title>Monday Express [Day 3] Exercism</title>
      <dc:creator>Cliff Gor</dc:creator>
      <pubDate>Mon, 05 Oct 2020 10:07:36 +0000</pubDate>
      <link>https://dev.to/cliffgor/monday-express-day-1-29p2</link>
      <guid>https://dev.to/cliffgor/monday-express-day-1-29p2</guid>
      <description>&lt;p&gt;Hello, welcome to the third BigO notation challenge where we will be solving a few challenges.&lt;/p&gt;

&lt;p&gt;Thank you all for last week's remarks. We had a chance to read a detailed explanation of what BigO notation is and how you can go about solving the challenges. &lt;/p&gt;

&lt;p&gt;We have been solving challenges and today I found out about a wonderful platform that is free &lt;a href="https://exercism.io/"&gt;Exercism&lt;/a&gt; and also we could maximize it. &lt;/p&gt;

&lt;p&gt;Through this, it would help improve your problem-solving skills and even tackle big company coding challenges.&lt;/p&gt;

&lt;p&gt;That is why I created a team link where we can solve challenges and share what we learned from the challenges.&lt;/p&gt;

&lt;p&gt;To Join click on the link here &lt;a href="https://teams.exercism.io/teams/4mK15pBixpJyy3K63eJe3RZh/join"&gt;Monday Express&lt;/a&gt;. If you need more languages covered you can always reach out&lt;/p&gt;

&lt;p&gt;Let's Join and solve these challenges.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>codechallenges</category>
      <category>mondayexpress</category>
      <category>devcirles</category>
    </item>
    <item>
      <title>Monday Express BigO Notation [Day 2]</title>
      <dc:creator>Cliff Gor</dc:creator>
      <pubDate>Mon, 28 Sep 2020 07:58:57 +0000</pubDate>
      <link>https://dev.to/cliffgor/monday-express-bigo-notation-day-2-2bm6</link>
      <guid>https://dev.to/cliffgor/monday-express-bigo-notation-day-2-2bm6</guid>
      <description>&lt;h3&gt;
  
  
  Hello welcome to the second BigO notation challenge where we will be solving a few challenges.
&lt;/h3&gt;

&lt;h1&gt;
  
  
  Today we will be taking a new route just to understand what BigO Notation is
&lt;/h1&gt;

&lt;h1&gt;
  
  
  What is BigO Notation?
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;Big O notation is the language we use for talking about how long an algorithm takes to run (time complexity) or how much memory is used by an algorithm (space complexity). Big O notation can express the best, worst, and average-case running time of an algorithm. &lt;a href="https://medium.com/better-programming/big-o-notation-a-simple-explanation-with-examples-a56347d1daca"&gt;Big-O Notation: A Simple Explanation with Examples&lt;/a&gt;
&lt;div class="ltag__link"&gt;
  &lt;a href="https://medium.com/better-programming/big-o-notation-a-simple-explanation-with-examples-a56347d1daca" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--uUWIUDhC--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://miro.medium.com/fit/c/96/96/1%2AABW1gl4UQRaUNou8F5bznw.jpeg" alt="Pamela Lovett"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://medium.com/better-programming/big-o-notation-a-simple-explanation-with-examples-a56347d1daca" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;Big-O Notation: A Simple Explanation with Examples | by Pamela Lovett | Better Programming&lt;/h2&gt;
      &lt;h3&gt;Pamela Lovett ・ &lt;time&gt;Jan 28, 2020&lt;/time&gt; ・ 
      &lt;div class="ltag__link__servicename"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--hnDHPsJs--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/medium-f709f79cf29704f9f4c2a83f950b2964e95007a3e311b77f686915c71574fef2.svg" alt="Medium Logo"&gt;
        Medium
      &lt;/div&gt;
    &lt;/h3&gt;
&lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Well said you can check that blog which has a lot of explanation about O Notation.
&lt;/h3&gt;

&lt;p&gt;There are 4 key things to consider while solving BigO challenges&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;When you have different steps in your algorithm you add them &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You drop constants as they are described as (o) of n&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;If you have different inputs you use different variables to represent that eg&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You drop non dominate terms&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;You can watch a simple explanation of &lt;a href="https://www.youtube.com/watch?v=v4cd1O4zkGw"&gt;BigO Notation&lt;/a&gt; &lt;iframe width="710" height="399" src="https://www.youtube.com/embed/v4cd1O4zkGw"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;h1&gt;
  
  
  Thank you for reading see you next week 🎉
&lt;/h1&gt;

</description>
      <category>datastractures</category>
      <category>algorithims</category>
      <category>devcircles</category>
    </item>
    <item>
      <title>Monday Express BigO Notation [Day 1]</title>
      <dc:creator>Cliff Gor</dc:creator>
      <pubDate>Mon, 21 Sep 2020 07:08:01 +0000</pubDate>
      <link>https://dev.to/cliffgor/monday-express-bigo-notation-day-1-59ab</link>
      <guid>https://dev.to/cliffgor/monday-express-bigo-notation-day-1-59ab</guid>
      <description>&lt;h3&gt;
  
  
  Hello welcome to the first BigO notation challenge where we will be solving a few challenges 🚀
&lt;/h3&gt;

&lt;h1&gt;
  
  
  For our first challenge we are going to solve this problem, feel free to use any language that you are comfortable with.
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://www.hackerrank.com/challenges/ctci-big-o/problem"&gt;Big O Challenge Link&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A  &lt;em&gt;prime&lt;/em&gt;  is a natural number  &lt;em&gt;greater than&lt;/em&gt;  that has no positive divisors other than  and itself. Given  integers, determine the primality of each integer and print whether it is  &lt;code&gt;Prime&lt;/code&gt;  or  &lt;code&gt;Not prime&lt;/code&gt;  on a new line.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt;  If possible, try to come up with an  primality algorithm, or see what sort of optimizations you can come up with for an  algorithm. Be sure to check out the  &lt;em&gt;Editorial&lt;/em&gt;  after submitting your code!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Function Description&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Complete the  &lt;em&gt;primality&lt;/em&gt;  function in the editor below. It should return  &lt;code&gt;Prime&lt;/code&gt;  if  is prime, or  &lt;code&gt;Not prime&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;primality has the following parameter(s):&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;em&gt;n&lt;/em&gt;: an integer to test for primality&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Input Format&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The first line contains an integer,  , denoting the number of integers to check for primality.&lt;br&gt;&lt;br&gt;
Each of the  subsequent lines contains an integer,  , the number you must test for primality.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Constraints&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Output Format&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;For each integer, print whether  is  &lt;code&gt;Prime&lt;/code&gt;  or  &lt;code&gt;Not prime&lt;/code&gt;  on a new line.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Sample Input&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;3
12
5
7

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

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Sample Output&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Not prime
Prime
Prime

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

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Explanation&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;We check the following  integers for primality:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; is divisible by numbers other than  and itself (i.e.:  ,  ,  ,  ), so we print  &lt;code&gt;Not prime&lt;/code&gt;  on a new line.&lt;/li&gt;
&lt;li&gt; is only divisible  and itself, so we print  &lt;code&gt;Prime&lt;/code&gt;  on a new line.&lt;/li&gt;
&lt;li&gt; is only divisible  and itself, so we print  &lt;code&gt;Prime&lt;/code&gt;  on a new line.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I hope to see all those responses and if you can do a video solving the solution. &lt;/p&gt;

&lt;h1&gt;
  
  
  Good Luck 🎉
&lt;/h1&gt;

</description>
      <category>javascript</category>
      <category>datastractures</category>
      <category>algorithims</category>
      <category>devcircles</category>
    </item>
  </channel>
</rss>
