gpt4 book ai didi

javascript - 如何将数组转换为下划线中的对象?

转载 作者:行者123 更新时间:2023-11-30 12:03:19 24 4
gpt4 key购买 nike

我有一个数组

var subject = ["Tamil", "English", "Math"];

我需要按如下方式将其转换为对象

[{
"name": "Tamil"
}, {
"name": "English"
}, {
"name": "Math"
}]

最佳答案

带下划线:

const subject = ['Tamil', 'English', 'Math'];

const out = _.map(subject, el => ({ name: el }));

console.log(out);
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.13.4/underscore-min.js"></script>

native JS 使用 map :

const subject = ['Tamil', 'English', 'Math'];

const out = subject.map(el => ({ name: el }));

console.log(out);

关于javascript - 如何将数组转换为下划线中的对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36039048/

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