In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
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!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.