gpt4 book ai didi

JavaScript ES6 : Create a id-value object from list

转载 作者:行者123 更新时间:2023-11-28 17:19:57 24 4
gpt4 key购买 nike

如何使用 Javascript es6 从数组创建对象?

uniqYears 数组的长度是灵活的,因此,我不想对每年的 ID 进行硬编码。我没有可以开始的索引列表。

const uniqYears = [2016, 2017]

期望的输出:

const uniqYearsObj = [
{ id: 1, year: 2016 },
{ id: 2, year: 2017 }
]

最佳答案

给你:

const uniqYears = [2016, 2017]

const uniqYearsObj = uniqYears.map((y, index) => ({id: index + 1, year:y }) )

console.log(uniqYearsObj)

关于JavaScript ES6 : Create a id-value object from list,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52677594/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com