How to create array and add elementWe can create arrays in JavaScript in different ways. If we are processing a form then elements of the form can be managed as part of an array. We will learn some different points on use of arrays and before that we will learn some basics of JavaScript array.How to create arrays in JavaScript? We can declare an array like this
We can add elements to this array like this
Now our array scrips has 4 elements inside it and we can print or access them by using their index number. Note that index number starts from 0. To get the third element of the array we have to use the index number 2 . Here is the way to get the third element of an array.
We also can create an array like this
Crating Array from a StringMore practical requirement will be crating array from a string. You can read more on this on our tutorial on split.
This article is written by plus2net.com team.
![]() |
![]() |