In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
This article mainly introduces how to convert an array into an object in es6, which has a certain reference value, and interested friends can refer to it. I hope you will gain a lot after reading this article.
Conversion methods: 1, the use of fromEntries () and map () function, syntax "Object.fromEntries (item = > [item.key, item])" statement; 2, the use of the extension operator "...", syntax "{... arr}".
The operating environment of this tutorial: windows7 system, ECMAScript version 6, Dell G3 computer.
The method of converting array to object in es6
Method 1: using fromEntries () and map () functions
Const arr = [{key: "id", name: "number"}, {key: "name", name: "name"},]; const obj = Object.fromEntries (item = > [item.key, item]); console.log (obj)
Output
Method 2: use the extension operator "."
Const arr = [{key: "id", name: "number"}, {key: "name", name: "name"},]; const obj = {... arr}; console.log (obj)
Thank you for reading this article carefully. I hope the article "how to convert arrays into objects in es6" shared by the editor will be helpful to everyone. At the same time, I also hope that you will support and follow the industry information channel. More related knowledge is waiting for you to learn!
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.