![]() |
In JavaScript, Arrays can contain any type of data, numbers, strings, booleans, objects, etc. But typically all elements are of the same type. Arrays can be single-dimensional with one level of elements, or multi-dimensional with nested arrays. Following are the ways to declare an Array in JavaScript:Table of Content Approach 1: Using Array LiteralArray literals use square brackets to enclose comma-separated elements for initializing arrays in JavaScript. Syntax:const arrayName = [element1, element2, element3]; Example: This example shows the different types of array declaration.
Output [ 56, 74, 32, 45 ] [ 'Javascript', 'Python', 'Java' ] [] [ [ 0, 1 ], [ 2, 3 ] ] Approach 2: Using Array constructorThe Array constructor allows dynamically creating arrays and setting their initial state. It allows passing in elements as arguments to populate the array. If no arguments are passed, an empty array is created. Syntax:const arrayName = Array(element0, element1, ..., elementN); Example: This example shows the declaration of an array using the array constructor.
Output [ 56, 74, 32, 45 ] [ 'Javascript', 'Python', 'Java' ] [] [ [ [ 0, 1 ], [ 2, 3 ] ] ] Approach 3: Using new keywordThe new Array() constructor initializes the array and returns a reference to the array object. It can be used to create arrays of different data types like numbers, strings, nested arrays etc. Syntax:const arrayName = new Array(element0, element1, ..., elementN); Example: This example shows that we can create an array using new keyword also.
Output [ 56, 74, 32, 45 ] [ 'Javascript', 'Python', 'Java' ] [] [ [ [ 0, 1 ], [ 2, 3 ] ] ] Approach 4: Using Array.ofThe Array.of method creates a new Array instance with a variable number of elements. It is especially useful to ensure that single numeric arguments are treated as elements rather than array lengths (which is a peculiarity of the Array constructor). Example: This example demonstrates the use of Array.of to declare arrays:
Output [ 56, 74, 32, 45 ] [ 'Javascript', 'Python', 'Java' ] [] [ [ 0, 1 ], [ 2, 3 ] ] Approach 5: Using Array.fromThe Array.from method creates a new array instance from an array-like or iterable object. It allows for mapping functions to be applied to each element during the creation of the array. Example: This example demonstrates the use of Array.from to declare arrays:
Output [ 'J', 'a', 'v', 'a', 'S', 'c', 'r', 'i', 'p', 't' ] [ 1, 2, 3, 4 ] [ 5, 10, 15, 20 ] [ 2, 4, 6, 8 ] |
Reffered: https://www.geeksforgeeks.org
JavaScript |
Type: | Geek |
Category: | Coding |
Sub Category: | Tutorial |
Uploaded by: | Admin |
Views: | 14 |