如何像这样更改嵌套对象的属性?
const album3 = {
title: 'Fear of Music',
albumDetails: {
released: 'August 3, 1979',
label: 'Sire',
formats: ['Cassette']
}
};
问题:使用该字符串将 album3 的已发布属性从字符串更新为 Date 对象。
我尝试过很多类似的变体:
album3.albumDetails.Date = album3.albumDetails.released
const album3 = {
title: 'Fear of Music',
albumDetails: {
released: 'August 3, 1979',
label: 'Sire',
formats: ['Cassette']
}
};
question: Update the released property of album3 from a string into a Date object using that string.
I have tried many variations of something like this:
album3.albumDetails.Date = album3.albumDetails.released
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论