JavaScript array merging case study

JavaScript array merging case study

Method 1:

var a = [1,2,3];
var b=[4,5]
a = a.concat(b);
console.log(a);
//The output here is [1, 2, 3, 4, 5]

Method 2:

// ES5 notation var arr1 = [0, 1, 2];
var arr2 = [3, 4, 5];
Array.prototype.push.apply(arr1, arr2);
console.log(arr1) // [0, 1, 2, 3, 4, 5]

Method 3:

// ES6 way var arr1 = [0, 1, 2];
var arr2 = [3, 4, 5];
arr1.push(...arr2);
console.log(arr1) // [0, 1, 2, 3, 4, 5]
// ES6 way var arr1 = [0, 1, 2];
var arr2 = [3, 4, 5];
var arr3=[...arr1, ...arr2]
console.log(arr3) // [0, 1, 2, 3, 4, 5]

This is the end of this article about JavaScript array merging cases. For more relevant JavaScript array merging content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Commonly used JavaScript array methods
  • JavaScript Array Detailed Summary
  • Common array operations in JavaScript
  • JavaScript Array Methods - Systematic Summary and Detailed Explanation
  • Summary of examples of common methods of JavaScript arrays
  • JS uses map to integrate double arrays
  • Detailed explanation of built-in methods of javascript array

<<:  Advanced and summary of commonly used sql statements in MySQL database

>>:  Practical way to build selenium grid distributed environment with docker

Recommend

How to print highlighted code in nodejs console

Preface When the code runs and an error occurs, w...

Simple principles for web page layout design

This article summarizes some simple principles of...

How to implement Mysql scheduled tasks under Linux

Assumption: The stored procedure is executed ever...

Solution to Linux QT Kit missing and Version empty problem

Currently encountering such a problem My situatio...

Analysis and solution of Chinese garbled characters in HTML hyperlinks

A hyperlink URL in Vm needs to be concatenated wit...

How to use the VS2022 remote debugging tool

Sometimes you need to debug remotely in a server ...

Docker custom network container interconnection

Table of contents Preface –link Custom Network As...

How to turn local variables into global variables in JavaScript

First we need to know the self-calling of the fun...

What scenarios are not suitable for JS arrow functions?

Table of contents Overview Defining methods on an...

How to change password and set password complexity policy in Ubuntu

1. Change password 1. Modify the password of ordi...

How to solve nginx 503 Service Temporarily Unavailable

Recently, after refreshing the website, 503 Servi...

How to install Docker using scripts under Linux Centos

What is the main function of Docker? At present, ...