In most of the programming languages, A collection of a certain finite number of items is an Array. Or the Sets in the Mathematics.
In JavaScript as well, there are many ways to create arrays. We will be taking a look into some of them to create Arrays.
Table of Contents:
- Basic way
- With Array Constructor
- Spread Operator
- From another Array
- From Array-Like Objects
- Using Loops like Map and Reduce
- New Array of Length and Fill with some value
- Form Objects using Object.keys and Object.values
- Array Concat Function
Basic way
At first, the basic way to create arrays is here as follows:
const animals = ['πΌ', 'π¦', 'π·', 'π¦'];
With Array Constructor
Another way to create array is by using Array Constructor function.
const Animals = new Array('πΌ', 'π¦', 'π·', 'π¦');
You can achieve same with new Array function of
. Like in the following example for Array.of
, we create array of mixed values:
const Animals = Array.of('πΌ', null, 'π¦', undefined);
console.log(Animals);
// π (4) ["πΌ", null, "π¦", undefined]
Interesting thing to notice about the Constructor function is its handy override. The override is that if you pass only one argument and it is an integer, the Constructor function will create an empty array for you of that specified length.
Spread Operator
Spread operator; as we saw in the different ways to create objects; works similarly and helps in creating the Arrays faster.
Like in the following example, we will add the new item and spread the old array to create a complete new Array.
const moreAnimals = ['π΅', ...animals ];
From another Array
Array.from
will allow you to create the Arrays from another array.
The newly created array is completely new copyrights and is not gonna mutate any changes to the old array.
const Animals = new Array('πΌ', 'π¦', 'π·', 'π¦');
const copyOfAnimals = Array.from(Animals);
From Array-Like Objects
Some Lists look like Arrays but are not arrays. And, at that time you might wanna convert it to Array to better operability and readability on the data structure.
One of such list is NodeList which you receive as an output of document.quaerySelectorAll
const divs = document.querySelectorAll('div');
const divsArray = Array.prototype.slice.call(divs);
Here you can use the Array.from
function as well to create the array from the Array-like objects. Letβs see that in the following example:
const divs = document.querySelectorAll('div');
const divsArray = Array.from(divs);
Using Loops like Map and Reduce
Event though map and reduce are used to loop over the Arrays. Their non-mutating nature allows us to create new Arrays in different ways.
Map
const animals = ['πΌ', 'π¦', 'π·', 'π¦'];
const animalsCopy = animals.map(a => `${a}'s kid`);
console.log(animalsCopy);
// π (4) ["πΌ's kid", "π¦'s kid", "π·'s kid", "π¦'s kid"]
Reduce
const animals = ['πΌ', 'π¦', 'π·', 'π¦'];
const animalsCopy = animals.reduce((gang, animal) => [
...gang,
{ animal }
], []);
console.log(animalsCopy);
/* π
. (4) [{β¦}, {β¦}, {β¦}, {β¦}]
. 0: {animal: "πΌ"}β¨
. 1: {animal: "π¦"}β¨
. 2: {animal: "π·"}
β¨ . 3: {animal: "π¦"}β¨
. length: 4
*/
New Array of Length and Fill with some value
We can quickly create new Arrays of any finite length with Array constructor.
All we have to do is to pass that indefinite length of the desired array as a number to the constructor.
Like in the following example, we will create a new Array of length 6.
Though creating an empty array is useless because you will not be able to use the Array functions until it has items in it.
One quick way to do so is to use theΒ .fill method of the array and put an arbitrary value in each index of the Array.
Once the array is filled,you can use the loops to enhance it more with the different values.
const emojis = new Array( 6 ).fill( 'π' );
console.log(emojis);
// π (6) ["π", "π", "π", "π", "π", "π"]
// Breakdown:
const arr = new Array( 6 );
console.log(arr);
/* π
. (6) [empty Γ 6]
. length: 6
*/
arr.fill( Math.random().toFixed(2) );
/* π
. (6) ["0.80", "0.80", "0.80", "0.80", "0.80", "0.80"]
. 0: "0.80"β¨
. 1: "0.80"β¨
. 2: "0.80"
β¨ . 3: "0.80"β¨
. 4: "0.80"β¨
. 5: "0.80"
β¨ . length: 6
*/
Form Objects using Object.keys and Object.values
You can create array of Keys or Values of any Object with functions Object.keys
and Object.values
respectively.
const days = {
1: 'Monday',
2: 'Tuesday',
3: 'Wednesday',
4: 'Thursday',
5: 'Friday',
6: 'Saturday',
7: 'Sunday'
};
Array Concat Function
You can use the Array Concat function to create new Arrays as well.
If you use an empty array as the starting point, the output of [].concat
will be a new copy of concatenated Arrays.
const birds = ['π¦', 'π¦'];
const moreBirds = [].concat(birds, 'π¦
', ['π¦']);
console.log(moreBirds);
// (4) ["π¦", "π¦", "π¦
", "π¦"]
Conclusion
As we have seen some different ways to create Arrays in JavaScript.
Not all of these methods can be used in the same ways and every method has its perk for specific use cases.
Let me know through comments π¬ or on Twitter at @patel_pankaj_ and @time2hack
If you find this article helpful, please share it with others π£
Subscribe to Time to Hack to receive new posts right to your inbox.
Originally published at https://time2hack.com on February 10, 2020.
Top comments (0)