Get the App
SLTechnology News&Howtos  ›  Development  › 

How to abbreviate the expansion operator in JavaScript

Shulou Source: shulou.com Published: 2022-06-01 04:38:42 09月18日 Update

This article is about how JavaScript shortens the expansion operator. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

Unfold operator

The unfold operator was introduced in ES6, and using the unfold operator can make JavaScript code more efficient and interesting.

Use the expansion operator to replace some array functions.

/ / joining arraysconst odd = [1,3,5]; const nums = [2,4,6] .concat (odd); / / cloning arraysconst arr = [1,2,3,4]; const arr2 = arr.slice ()

Abbreviated as:

/ joining arraysconst odd = [1, 3, 5]; const nums = [2, 4, 6,... odd]; console.log (nums); / / [2, 4, 6, 1, 3, 5] / / cloning arraysconst arr = [1, 2, 3, 4]; const arr2 = [. Arr]

Unlike the concat () function, users can use the extension operator to insert another array into any array.

Const odd = [1,3,5]; const nums = [2,... odd, 4,6]

You can also use the unfold operator with ES6 deconstruction symbols:

Const {a, b,... z} = {a: 1, b: 2, c: 3, d: 4}; console.log (a) / / 1console.log (b) / / 2console.log (z) / / {c: 3, d: 4} Thank you for reading! This is the end of the article on "how to abbreviate the expansion operator of JavaScript". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it for more people to see!

Tags: Operator operation abbreviation array content more article different good practical effective interesting code function function article is in user see knowledge Apple Docker Huawei Linux macOS MariaDB Microsoft MySQL NVidia OPPO Reno Shulou Information Linux Apple MySQL Redmi