<?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: Mohan Mogi</title>
    <description>The latest articles on DEV Community by Mohan Mogi (@mohan_mogi_61a3367e66b67c).</description>
    <link>https://dev.to/mohan_mogi_61a3367e66b67c</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%2F3756893%2F42392817-0085-43da-a370-04eacb314473.png</url>
      <title>DEV Community: Mohan Mogi</title>
      <link>https://dev.to/mohan_mogi_61a3367e66b67c</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mohan_mogi_61a3367e66b67c"/>
    <language>en</language>
    <item>
      <title>“JavaScript Array Methods Explained Simply”</title>
      <dc:creator>Mohan Mogi</dc:creator>
      <pubDate>Thu, 09 Apr 2026 05:17:33 +0000</pubDate>
      <link>https://dev.to/mohan_mogi_61a3367e66b67c/array-methods-53ii</link>
      <guid>https://dev.to/mohan_mogi_61a3367e66b67c/array-methods-53ii</guid>
      <description>&lt;p&gt;ARRAY:&lt;br&gt;
An array is an object type,it is used for storing data collections.Multiple values store in a single variable.&lt;/p&gt;

&lt;p&gt;FEATURES OF JAVASCRIPT ARRAYS are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;ELEMENT&lt;br&gt;
An array a list of values are known as elements.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;ORDERED&lt;br&gt;
Array elements are ordered&lt;br&gt;
Based on their index. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;ZERO INDEXED&lt;br&gt;
The first element is index 0,&lt;br&gt;
Second element is 1.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;HETEROGENEOUS &lt;br&gt;
Arrays can store elements of different datatypes.&lt;br&gt;
(Strings,numbers,objects and other arrays)&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;WHY USE ARRAY:&lt;/p&gt;

&lt;p&gt;let a = 10;&lt;br&gt;
let b = 20;&lt;br&gt;
let c = 30;&lt;br&gt;
 This is ok for 3 variables,how can manage 200,300 variables?.So use array.An array can store many values under a single name,can acces the values by referring to an index number.&lt;/p&gt;

&lt;p&gt;Array syntax&lt;br&gt;
let numbers = [10, 20, 30];&lt;/p&gt;

&lt;p&gt;console.log(numbers[1]);&lt;br&gt;
Output 20 &lt;/p&gt;

&lt;p&gt;BASIC ARRAY METHODSS &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Array length &lt;/li&gt;
&lt;li&gt;Array toString() – Convert to string&lt;/li&gt;
&lt;li&gt;Array at() – &lt;/li&gt;
&lt;li&gt;Array join()&lt;/li&gt;
&lt;li&gt;Array pop() – Remove last element&lt;/li&gt;
&lt;li&gt;Array push() – Add at end&lt;/li&gt;
&lt;li&gt;Array shift()&lt;/li&gt;
&lt;li&gt;Array unshift()&lt;/li&gt;
&lt;li&gt;Array isArray()&lt;/li&gt;
&lt;li&gt;Array delete()&lt;/li&gt;
&lt;li&gt;Array concat()&lt;/li&gt;
&lt;li&gt;Array copyWithin()&lt;/li&gt;
&lt;li&gt;Array flat()&lt;/li&gt;
&lt;li&gt;Array slice()&lt;/li&gt;
&lt;li&gt;Array splice()&lt;/li&gt;
&lt;li&gt;Array toSpliced()&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;1.Array length &lt;br&gt;
  Array length means length property returns the length(count,size)of an array.&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fj4oe4x9u9anj697wymo7.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fj4oe4x9u9anj697wymo7.jpg" alt=" " width="800" height="198"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Explanation:&lt;br&gt;
🔹The array has 3 values,so  length is 3.&lt;br&gt;
🔹Even though index starts at 0, length counts from 1.&lt;/p&gt;

&lt;p&gt;2.Array tostring()&lt;br&gt;
  The tostring methods returns the elements as of array commas as a seperated string.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2For9tx7vzk7d11s5vd6di.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2For9tx7vzk7d11s5vd6di.png" alt=" " width="800" height="127"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Explanation&lt;br&gt;
🔹The .toString() method converts the array into a string&lt;br&gt;
🔹It automatically adds commas ( , ) between values&lt;br&gt;
🔹output (1o,20,30)&lt;/p&gt;

&lt;p&gt;3.Array at()&lt;br&gt;
  The at() methods returns an indexed element from an array.Including negative index.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flfgfkb21hvcdgoc2dk7h.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flfgfkb21hvcdgoc2dk7h.png" alt=" " width="800" height="173"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Explanation&lt;br&gt;
🔹at(0) → first element&lt;br&gt;
🔹at(1) → second element&lt;br&gt;
🔹at(2) → third element&lt;br&gt;
🔹output&lt;br&gt;
    10&lt;br&gt;
    20&lt;br&gt;
    30&lt;/p&gt;

&lt;p&gt;4.Array join()&lt;br&gt;
  This method is joins all array element into a string.its react like array tostring(),but add in specify the seperator.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fznrm0f8k2p1owyl575yf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fznrm0f8k2p1owyl575yf.png" alt=" " width="800" height="149"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Explanation&lt;br&gt;
🔹 Converts array to string&lt;br&gt;
🔹 Does not change original array&lt;br&gt;
🔹 output( 10 20 30 )&lt;/p&gt;

&lt;p&gt;Add specify seperator&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flb3ymcgyvd9sbtn3c1i9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flb3ymcgyvd9sbtn3c1i9.png" alt=" " width="800" height="148"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Explanation&lt;br&gt;
🔹 add in specify seperator&lt;br&gt;
🔹 output(10*20*30)&lt;/p&gt;

&lt;p&gt;5.Array pop()&lt;br&gt;
  Array pop method remove the last element from an array.&lt;br&gt;
The pop() method returns the value that was "popped out":&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fyyycric19p87smucdnf7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fyyycric19p87smucdnf7.png" alt=" " width="800" height="172"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Explanation&lt;br&gt;
🔹Removes the last element  30&lt;br&gt;
🔹Returns the removed value 30&lt;br&gt;
🔹Updates the array → [10, 20]&lt;br&gt;
🔹Output:&lt;br&gt;
  30&lt;br&gt;
  [ 10, 20 ]&lt;/p&gt;

&lt;p&gt;6.Array push()&lt;br&gt;
  Array push() method is one or more new element add to an array at the last.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F28l9z6jch803axfr1q31.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F28l9z6jch803axfr1q31.png" alt=" " width="800" height="142"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Explanation &lt;br&gt;
🔹Adds element to the end&lt;br&gt;
🔹Updates the original array.&lt;/p&gt;

&lt;p&gt;push() returns the new arraylength.&lt;br&gt;
push()return value&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjv9m8a8c2nc7zaxkyrqd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjv9m8a8c2nc7zaxkyrqd.png" alt=" " width="800" height="148"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Explanation&lt;br&gt;
🔹Adds elements to the end&lt;br&gt;
🔹Changes the original array&lt;br&gt;
🔹Returns new length&lt;/p&gt;

&lt;p&gt;7.Array shift()&lt;br&gt;
  This method is remove fisrt element from an array and shifts all other element to a lower index.The shift() method returns the value that was "shifted out":&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpkcg08194unfiaq5p06n.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpkcg08194unfiaq5p06n.png" alt=" " width="800" height="165"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Explanation&lt;br&gt;
🔹Removes the first element → 10&lt;br&gt;
🔹Returns the removed value → 10&lt;br&gt;
🔹Updates the array → [20, 30]&lt;/p&gt;

&lt;p&gt;8.Array unshift()&lt;br&gt;
 The unshift() method is used to add one or more elements to the beginning (start) of an array.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Foxaqyszk8x0y0igbvf8g.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Foxaqyszk8x0y0igbvf8g.png" alt=" " width="800" height="162"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Explanatioon&lt;br&gt;
🔹Adds element at the start&lt;br&gt;
🔹Moves existing elements to the right&lt;/p&gt;

&lt;p&gt;The unshift() method returns the new array length:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw5a7u3etitkcipl5f1ef.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw5a7u3etitkcipl5f1ef.png" alt=" " width="800" height="166"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Explaation&lt;br&gt;
🔹 Adds elements to the beginning&lt;br&gt;
🔹 Changes the original array&lt;br&gt;
🔹 Returns new length&lt;/p&gt;

&lt;p&gt;9.Array isArray()&lt;br&gt;
Array.isArray() is used to check whether a value is an array or not.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw1zjg7idvpeimz7ax91g.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw1zjg7idvpeimz7ax91g.png" alt=" " width="800" height="150"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Explanation&lt;br&gt;
🔹true means its array&lt;br&gt;
🔹false means its not array&lt;/p&gt;

&lt;p&gt;10.array delete()&lt;br&gt;
It is a delete keyword, but it is not recommended for arrays &lt;br&gt;
Because it removes the value but keeps an empty slot (hole).&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxomqyzyo07lmune24qwv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxomqyzyo07lmune24qwv.png" alt=" " width="800" height="133"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Explanation&lt;br&gt;
🔹Index still exists&lt;br&gt;
🔹Creates empty (undefined) space&lt;/p&gt;

&lt;p&gt;11.Array concat()&lt;br&gt;
The concat() method creates a new array by merging (concatenating) existing arrays:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fda3ejk46x5pj8eziobqs.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fda3ejk46x5pj8eziobqs.png" alt=" " width="800" height="174"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Explanation:&lt;br&gt;
🔹arr1 contains [10, 20]&lt;br&gt;
🔹arr2 contains [30]&lt;br&gt;
🔹concat() joins both arrays and returns a new array&lt;br&gt;
🔹Original arrays are not changed&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>javascript</category>
      <category>programming</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>JAVASCRIPT OBJECT FUCTIONS</title>
      <dc:creator>Mohan Mogi</dc:creator>
      <pubDate>Wed, 08 Apr 2026 05:58:13 +0000</pubDate>
      <link>https://dev.to/mohan_mogi_61a3367e66b67c/javascript-object-fuctions-mii</link>
      <guid>https://dev.to/mohan_mogi_61a3367e66b67c/javascript-object-fuctions-mii</guid>
      <description>&lt;p&gt;OBJECT CONSTRUCTOR FUNCTIONS:&lt;br&gt;
 The constructor method for creating and initailizing object.Sometimes create many object of the same type,to create an objecct constructor function.constructor functions with an first letter start with an upper case letter.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgy9q28z2oe83y8vdlnqf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgy9q28z2oe83y8vdlnqf.png" alt=" " width="800" height="122"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>OBJECT LEARN CRUD METHODS</title>
      <dc:creator>Mohan Mogi</dc:creator>
      <pubDate>Tue, 07 Apr 2026 06:30:43 +0000</pubDate>
      <link>https://dev.to/mohan_mogi_61a3367e66b67c/object-learn-crud-methods-3gi9</link>
      <guid>https://dev.to/mohan_mogi_61a3367e66b67c/object-learn-crud-methods-3gi9</guid>
      <description>&lt;p&gt;OBJECT:&lt;br&gt;
 An object is stores a collection of key value pairs.&lt;br&gt;
 key is property name,value is store any datatypes.&lt;/p&gt;

&lt;p&gt;CRUD:&lt;br&gt;
C-Create (create object)&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F03a4acefxa9u54fvrjd5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F03a4acefxa9u54fvrjd5.png" alt=" " width="240" height="303"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;R-Read (read object)&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcgcp4swb6tzxbmialew2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcgcp4swb6tzxbmialew2.png" alt=" " width="800" height="203"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;U-Update (update values in object)&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3ps997l5ntoym66lt2qw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3ps997l5ntoym66lt2qw.png" alt=" " width="800" height="211"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;D-delete (delete values in object)&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5gyd61fp4z8d2ei1pasn.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5gyd61fp4z8d2ei1pasn.png" alt=" " width="800" height="217"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>JavaScript Functions Tutorial:</title>
      <dc:creator>Mohan Mogi</dc:creator>
      <pubDate>Mon, 06 Apr 2026 07:33:40 +0000</pubDate>
      <link>https://dev.to/mohan_mogi_61a3367e66b67c/javascript-functions-tutorial-syntax-types-and-examples-ked</link>
      <guid>https://dev.to/mohan_mogi_61a3367e66b67c/javascript-functions-tutorial-syntax-types-and-examples-ked</guid>
      <description>&lt;p&gt;what is function ?&lt;br&gt;
 Function are fundamental in all programming language.funtions are reusable code blocks designed to particular task.Instead of writing the same code again and again, you can define it once and call it whenever needed.&lt;/p&gt;

&lt;p&gt;Why use Functions ?&lt;br&gt;
 code wrrite once run many times.Easy to code make to read and maintain.&lt;/p&gt;

&lt;p&gt;Structure of function&lt;br&gt;
 A function can be created with the keyword,name and parentheses..The code that needs to be executed written inside the curly brackets.To run a function using call it's name,keyword.&lt;/p&gt;

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

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9tvtqly5win5s9moe8b7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9tvtqly5win5s9moe8b7.png" alt=" " width="800" height="129"&gt;&lt;/a&gt;&lt;br&gt;
 keyword,name name()&lt;br&gt;
 output inside the curly brackets (abcd)&lt;br&gt;
 call name()&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Array in javascript</title>
      <dc:creator>Mohan Mogi</dc:creator>
      <pubDate>Fri, 03 Apr 2026 07:47:56 +0000</pubDate>
      <link>https://dev.to/mohan_mogi_61a3367e66b67c/array-in-javascript-2hk5</link>
      <guid>https://dev.to/mohan_mogi_61a3367e66b67c/array-in-javascript-2hk5</guid>
      <description>&lt;p&gt;Array is used to store multiple values in a single variable.&lt;br&gt;
An Array is an object type designed for storing data collections.&lt;/p&gt;

&lt;p&gt;Uses of array:&lt;br&gt;
1)Store multiple values in one variable&lt;br&gt;
2(Easy to access and manage data&lt;br&gt;
3)Useful for loops and data processing&lt;/p&gt;

&lt;p&gt;Example;&lt;br&gt;
code to add programs&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjn3md10rz70yc32oi1k6.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjn3md10rz70yc32oi1k6.jpg" alt=" " width="800" height="539"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F45hqzltgf27mhi8c8otr.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F45hqzltgf27mhi8c8otr.jpg" alt=" " width="770" height="584"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Javascript whileloop</title>
      <dc:creator>Mohan Mogi</dc:creator>
      <pubDate>Fri, 27 Mar 2026 06:38:15 +0000</pubDate>
      <link>https://dev.to/mohan_mogi_61a3367e66b67c/javascript-whileloop-po4</link>
      <guid>https://dev.to/mohan_mogi_61a3367e66b67c/javascript-whileloop-po4</guid>
      <description>&lt;p&gt;What is a While Loop in JavaScript?&lt;br&gt;
A while loop in JavaScript is used to repeat a block of code as long as a condition is true.&lt;/p&gt;

&lt;p&gt;It is helpful when you don’t know how many times the loop should run in advance.&lt;/p&gt;

&lt;p&gt;let i = 1;&lt;/p&gt;

&lt;p&gt;while (i &amp;lt;= 5) {&lt;br&gt;
    console.log(i);&lt;br&gt;
    i++;&lt;br&gt;
}&lt;br&gt;
Output &lt;br&gt;
1&lt;br&gt;
2&lt;br&gt;
3&lt;br&gt;
4&lt;br&gt;
5&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Javascript operators</title>
      <dc:creator>Mohan Mogi</dc:creator>
      <pubDate>Wed, 25 Mar 2026 08:59:25 +0000</pubDate>
      <link>https://dev.to/mohan_mogi_61a3367e66b67c/javascript-operators-53ae</link>
      <guid>https://dev.to/mohan_mogi_61a3367e66b67c/javascript-operators-53ae</guid>
      <description>&lt;p&gt;JavaScript operators are special symbols used to perform operations on variables and values. They are the foundation of writing logic in JavaScript programs.&lt;/p&gt;

&lt;p&gt;Types of JavaScript types:&lt;br&gt;
1) Arithmetic operators&lt;br&gt;
Arithmetic operators Used to perform mathematical operations.&lt;/p&gt;

&lt;p&gt;console.log(a + b); &lt;br&gt;
Addition&lt;br&gt;
console.log(a - b); Subtraction&lt;br&gt;
console.log(a * b);  Multiplication&lt;br&gt;
console.log(a / b); &lt;br&gt;
 Division&lt;br&gt;
console.log(a % b);&lt;br&gt;
 Modulus&lt;br&gt;
console.log(a ** b);&lt;br&gt;
 Exponent&lt;br&gt;
2) Assignment Operators&lt;br&gt;
Assignment operators Used to assign values to variables.&lt;br&gt;
x += 5; &lt;br&gt;
x -= 3;&lt;br&gt;
x *= 2;&lt;br&gt;
x /= 2;&lt;/p&gt;

&lt;p&gt;3) Comparison Operators&lt;br&gt;
Comparison Operators Used to compare two values and return true or false.&lt;/p&gt;

&lt;p&gt;console.log(a == b);   true&lt;br&gt;
console.log(a === b);  false&lt;br&gt;
console.log(a != b);   false&lt;br&gt;
console.log(a &amp;gt; 5);   true&lt;/p&gt;

&lt;p&gt;4)Logical Operators&lt;br&gt;
Logical Operators Used to combine multiple conditions.&lt;/p&gt;

&lt;p&gt;console.log(age &amp;gt; 18 &amp;amp;&amp;amp; age &amp;lt; 30);&lt;br&gt;
 AND&lt;br&gt;
console.log(age &amp;gt; 18 || age &amp;lt; 10);&lt;br&gt;
 OR&lt;br&gt;
console.log(!(age &amp;gt; 18));            NOT&lt;/p&gt;

&lt;p&gt;5)Increment and Decrement&lt;br&gt;
Increment and Decrement Used to increase or decrease values.&lt;/p&gt;

&lt;p&gt;i++;  Increment&lt;br&gt;
i--;  Decrement&lt;/p&gt;

&lt;p&gt;6)Ternary Operator&lt;br&gt;
Ternary Operator Short form of if-else.&lt;br&gt;
let age = 20;&lt;/p&gt;

&lt;p&gt;let result = (age &amp;gt;= 18) ? "Adult" : "Minor";&lt;br&gt;
console.log(result);&lt;/p&gt;

&lt;p&gt;7)String Operator&lt;br&gt;
String Operator Used to combine strings.&lt;/p&gt;

&lt;p&gt;let first = "Hello";&lt;br&gt;
let second = "World";&lt;/p&gt;

&lt;p&gt;console.log(first + " " + second);&lt;/p&gt;

&lt;p&gt;8)Type Operator&lt;br&gt;
Type Operator Used to check data type.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Understanding JavaScript Data Types: A Beginner’s Guide</title>
      <dc:creator>Mohan Mogi</dc:creator>
      <pubDate>Wed, 25 Mar 2026 08:24:31 +0000</pubDate>
      <link>https://dev.to/mohan_mogi_61a3367e66b67c/understanding-javascript-data-types-a-beginners-guide-3a6p</link>
      <guid>https://dev.to/mohan_mogi_61a3367e66b67c/understanding-javascript-data-types-a-beginners-guide-3a6p</guid>
      <description>&lt;p&gt;SCRIPT:&lt;br&gt;
    Script is runs automatically and it is does not need full compilation&lt;/p&gt;

&lt;p&gt;WHY JAVASCRIPT CALLED JAVASCRIPT?&lt;br&gt;
    Javascript original name was MOCHA,after changed to livescript.It was created in 1995 by Brendan Eich at Netscape.Later renamed javascript.At that time, Java was very popular.So Netscape used the name “JavaScript” as a marketing strategy to attract developers.&lt;/p&gt;

&lt;p&gt;DATATYPES:&lt;br&gt;
    It's define what kind of value a variable can hold and how value can be used it.&lt;/p&gt;

&lt;p&gt;The Role of Data Types:&lt;br&gt;
 1.Store data correctly &lt;br&gt;
 2.Perform Valid operations&lt;br&gt;
 3.Avoid errors&lt;/p&gt;

&lt;p&gt;TYPES OF DATATYPES IN JAVASCRIPT:&lt;br&gt;
    They are two types of datatypes.&lt;br&gt;
 1.PRIMITIVE Data Types&lt;br&gt;
 2.NON-PRIMITIVE Data Types&lt;/p&gt;

&lt;p&gt;1.PRIMITIVE Data Types &lt;br&gt;
    This is basic type, they Store single simple values.&lt;br&gt;
Primitive data types are  seven types.&lt;br&gt;
 1.String &lt;br&gt;
    ( means text)&lt;br&gt;
 2.Number &lt;br&gt;
    ( means numbers)&lt;br&gt;
 3.Boolean &lt;br&gt;
    ( means true or false)&lt;br&gt;
 4.Undefined&lt;br&gt;
    ( means no value)&lt;br&gt;
 5.Null&lt;br&gt;
    ( means empty value)&lt;br&gt;
 6.BigInt&lt;br&gt;
    ( means large number)&lt;br&gt;
 7.Symbol&lt;br&gt;
    ( means unique identifier)&lt;/p&gt;

&lt;p&gt;2.NON-PRIMITIVE Data Types&lt;br&gt;
    This is reference type, they Store multiple values complex data.&lt;br&gt;
 1.Object&lt;br&gt;
  Special object &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Array&lt;/li&gt;
&lt;li&gt;Function &lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>Linux Installation</title>
      <dc:creator>Mohan Mogi</dc:creator>
      <pubDate>Tue, 24 Feb 2026 08:36:27 +0000</pubDate>
      <link>https://dev.to/mohan_mogi_61a3367e66b67c/linux-installation-5c40</link>
      <guid>https://dev.to/mohan_mogi_61a3367e66b67c/linux-installation-5c40</guid>
      <description>&lt;p&gt;Linux :&lt;br&gt;
Linux is open source,it is used developers, servers, and companies worldwide.&lt;/p&gt;

&lt;p&gt;Download ISO File:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Go to the official  website&lt;/li&gt;
&lt;li&gt;Download the latest LTS (Long Term Support) version&lt;/li&gt;
&lt;li&gt;File size will be around 3–4 GB&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Create Bootable USB:&lt;br&gt;
Install rufus&lt;br&gt;
  1.Insert USB&lt;br&gt;
  2.Open Rufus&lt;br&gt;
  3.Select ISO file&lt;br&gt;
  4.Click Start&lt;/p&gt;

&lt;p&gt;Go to settings kit locker option turn off.&lt;/p&gt;

&lt;p&gt;Partition Create:&lt;br&gt;
Go to settings disk management option.&lt;br&gt;
choose to disk right clik  after shrink volume.&lt;/p&gt;

&lt;p&gt;Install Linux:&lt;/p&gt;

&lt;p&gt;Restart computer&lt;br&gt;
Press Boot key &lt;br&gt;
Select USB drive&lt;br&gt;
Choose “Install Linux”&lt;/p&gt;

&lt;p&gt;You can read and continue with screen instructions.&lt;/p&gt;

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