gpt4 book ai didi

javascript - 如何将数组映射到日期?

转载 作者:行者123 更新时间:2023-11-28 14:25:56 25 4
gpt4 key购买 nike

在 C# 中,我会使用以下字典

Dictionary << Date, int []>>

用于将数组绑定(bind)到特定日期。在 JS 中实现相同目的的最简单方法是什么?

我需要能够更改整数数组中的值。

最佳答案

使用该日期的时间戳作为 js 对象的键。

例如,假设您要将日期 a 映射到数组 b:

const a = new Date();
const b = [1, 2, 3];


const c = {
[a.getTime()]: b,
};

在这种情况下,c 将是从日期到数组的对象或 HashMap 。

关于javascript - 如何将数组映射到日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53266402/

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