Skip to main content

JavaScript Arrays | my experiences

Introduction to JavaScript Arrays

Arrays are a means of creating a collection of values of the same kind by javascript.

A type of value means either only strings or only integers or floating point numbers etc. Arrays are used to avoid the problem of creating too many variables.
JavaScript Arrays
JavaScript Arrays

For example, if you want to store the names of 200 employees, for that you do not need to create 200 variables. You can create an array in which 200 names can be stored. Doing this saves the time of programmers.

Array Elements Indexing in JavaScript

Every element of an array can be uniquely identified. Stores the array values ​​by indexing. But always remember that the array starts with index zero.

So in the example mentioned above, the first name will be at 0 index and finally the name will be at 199 index. You can access any value of an array by the name of the array and its index number. You should also always remember that arrays are objects in JavaScript. That's why you create them by new keyword.

Although JavaScript also provides you the option to put values ​​directly but still arrays objects remain in JavaScript.

Creating JavaScript Arrays

Arrays can be created in JavaScript in 2 ways. Both these methods can be used according to different situation.

  • Directly - In this method you create an array and also add value. This is a combined way to create an array.
  • With new keyword - In this way you create the array as an object. In this method, first the array is created and later values ​​can be inserted. If you want, you can also add values ​​together for this, you use the constructor of the array object.

Both methods can be used in different situations according to the need.

Directly (Combined Way)

Creating an array in this way is very simple.

Syntax

var array_Name = [value1, value2, ..... valueN];
In this method, the name of the array is written after the var keyword. Array's name must be unique. Array values are given in angular brackets by placing an assignment operator after the name of the array. Values are separated from comma.

Example1: Creating & initializing array
<html>

<head>
<title> Javascript array demo </title>
</head>

<body>

<script type = "text / javascript">
// Array declaration

var empName = ["Sam", "Sally", "Tina", "Raghav", "John"];

// Printing array elements
for (i = 0; i <5; i ++)
{
      document.write (empName [i], "n");
}
</script>

</body>
</html>

With New Keyword

In this way, you use the new keyword to create an array in javascript. This is similar to creating an object.

Syntax
var array_Name = new Array ();
array_Name [0] = value1;
array_Name [1] = value2;
...
...
array_Name [n] = valueN;
If you want to add values ​​as well, then you can create an array from the structure given below.

var array_Name = new Array (value1, value2);
In the above method first array is created followed by values ​​by index numbers. In the following method the values ​​are put by the constructor of the Array object.

These values ​​constructor automatically assigns index numbers.

Example2: Array with new keyword
<html>

<head>
<title> Javascript new keyword demo </title>
</head>

<body>

<script type = "text / javascript">
// Array declaration using new keyword

var empName = new Array ("Angelina", "Sam");
// Printing array elements
for (i = 0; i <2; i ++)
{
    document.write (empName [i]);
}
</script>

</body>
</html>

JavaScript Arrays Length Property

JavaScript provides you with length property with array object. This property holds the length of your array.

Syntax

array_Name.length;
If you want, you can use this property to do loop control.

Example3: Loop to array length
<script type = "text / javascript">
var empAge = new Array (24,42,21,55,23,30);

// Displaying length of array
document.write ("Length of array is" + empAge.length);

// Iterating loop upto array length
for (var i = 0; i <empAge.length; i ++)
{
     document.write (empAge [i]);
}
</script>

Comments

Popular posts from this blog

Biography of Manohar Joshi

Biography of Manohar Joshi: Manohar Gajanan Joshi is an Indian politician who has played a significant role in Maharashtra state politics. Born on December 2, 1937, in a middle-class family in a village called Ganeshpeth in Ratnagiri district, Maharashtra, Joshi's journey into politics was marked by his association with the Shiv Sena, a right-wing regional political party in India. Joshi's political career began in the late 1960s when he joined the Shiv Sena, which was then led by its founder, Bal Thackeray. He quickly rose through the ranks of the party due to his organizational skills, dedication, and ideological alignment with the party's principles, which advocated for the interests of the Marathi-speaking population of Maharashtra. In 1972, Manohar Joshi won his first election to the Brihanmumbai Municipal Corporation (BMC), marking the beginning of his electoral career. He served as a corporator in the BMC and later became the Mayor of Mumbai in 1976. Joshi's tenu...

Professor Cheiro Prophecies about India | 5 predictions Professor Kiro - Kiro made these amazing predictions for India

Professor Cheiro Prophecies:  Here is Kiro made these amazing predictions for India: Professor Kiro was born in November 1866 in England. At the age of 17, Kiro came to Mumbai and met astrologer Vednarayan Joshi. With his advice, he will reach the Himalayas, Kashmir, Ladakh and Varanasi. From here, he studied astrology extensively. Kiro made many predictions in his life, which we are giving you here. Cheiro, whose real name was William John Warner, was a prominent Irish astrologer and palmist who gained fame in the late 19th and early 20th centuries. He was known for his accurate predictions and was consulted by various prominent figures of his time, including Mark Twain, Oscar Wilde, and Thomas Edison. Cheiro also made some predictions related to India. Parada Kahanee One of his notable predictions about India was made in his book "Cheiro's World Predictions," published in 1926. In this book, he wrote about the possibility of India gaining independence from British...

Merry Christmas Messages and Statuses | History and Celebration Christmas - Happy Christmas Status and Messages for Social Media

Merry Christmas Messages and Statuses: Wishing you a Merry Christmas 2023! Here are some messages and statuses that you can share with your loved ones: "May your Christmas be filled with joy, laughter, and love. Wishing you a wonderful holiday season!". "Sending you warm wishes and good cheer this Christmas. Have a great time with your family and friends!". "May the spirit of Christmas fill your heart with peace and happiness. Merry Christmas!". "Wishing you a magical and blissful holiday season. Have a Merry Christmas and prosperous New Year!". "May this Christmas bring you all the love and luck in the world. Merry Christmas and a Happy New Year!". Wishing you a Merry Christmas 2023 Here are some Christmas messages that you can use to wish your friends and family a Merry Christmas: 1. Wishing you a Christmas filled with joy, love, and laughter. May the spirit of Christmas bring warmth to your heart and happiness to your home. 2. May y...