Summary of JS tips for creating or filling arrays of arbitrary length

Summary of JS tips for creating or filling arrays of arbitrary length

Preface

In JavaScript development, there are often scenarios where you need to create arrays of a specific length. This article summarizes several tips for creating or filling arrays of arbitrary length. Learning these tips can improve your programming efficiency.

Direct filling method

Take the most primitive approach and manually fill the array to the required length.

const arr = [0,0,0];

for loop push() method

Similar to the first method, but using a for loop to create an array of a specific length

var len = 3;
var arr = [];
for (let i=0; i < len; i++) {
  arr.push(0);
}

Array Constructor Method

var len = 3;
var arr = new Array(len);

Add fill() method after Array constructor

var len = 3;
var arr = new Array(len).fill(0);

If you use an object as a parameter to fill() an array, all elements will refer to the same instance (that is, the object is not cloned multiple times, Array.from() does not have this problem):

var len = 3;
var obj = {};
var arr = new Array(len).fill(obj);

So operating on this array should be faster than creating it using the constructor. However, creating arrays is slower because the engine may need to reallocate contiguous memory multiple times as the array grows.

Filling an array with undefined

Array.from({length: 3}) // [ undefined, undefined, undefined ]

The following approach only works for iterable values, and has a similar effect to Array.from():

[...new Array(3)] // [ undefined, undefined, undefined ]

Mapping with Array.from()

You can map using Array.from() if you provide a mapping function as its second argument.

Filling an array with values

Array.from({length: 3}, () => 0) // [ 0, 0, 0 ]

Creating an array with unique (non-shared) objects

Array.from({length: 3}, () => ({})) // [ {}, {}, {} ]

Create an array with ascending integer sequences

Array.from({length: 3}, (x, i) => i) // [ 0, 1, 2 ]

Create with any range of integers

var start = 2, end = 5;
Array.from({ length: end - start }, (x, i) => i + start) // [ 2, 3, 4 ]

Another way to create an ascending integer array is to use keys()

[...new Array(3).keys()] // [ 0, 1, 2 ]

Summarize

This concludes this article on tips for creating or filling arrays of arbitrary length with JS. For more information on creating and filling arrays with JS, please search previous articles on 123WORDPRESS.COM or continue browsing the related articles below. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Tips for creating two-dimensional arrays in JavaScript
  • Example of how to dynamically create a two-dimensional array in JavaScript
  • JavaScript batch creation array method
  • A simple way to create an array in js
  • Detailed explanation of how to create an array in JavaScript

<<:  Example of creating table statements for user Scott in MySQL version of Oracle

>>:  Robots.txt detailed introduction

Recommend

Implement full screen and monitor exit full screen in Vue

Table of contents Preface: Implementation steps: ...

Solution to docker suddenly not being accessible from the external network

According to the methods of the masters, the caus...

SystemC environment configuration method under Linux system

The following is the configuration method under c...

How to convert a column of comma-separated values ​​into columns in MySQL

Preface Sometimes you come across business tables...

Apache ab concurrent load stress test implementation method

ab command principle Apache's ab command simu...

How to quickly build an LNMP environment with Docker (latest)

Preface Tip: Here you can add the approximate con...

Vue project realizes login and registration effect

This article example shares the specific code of ...

Node.js solves the problem of Chinese garbled characters in client request data

Node.js solves the problem of Chinese garbled cha...

Let IE support CSS3 Media Query to achieve responsive web design

Today's screen resolutions range from as smal...

Detailed explanation of the use of redux in native WeChat applet development

premise In complex scenarios, a lot of data needs...