gpt4 book ai didi

javascript - 我如何结合日期时间值和时间值 typescript

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

我有一个日期时间值和时间值,它们是字符串:

date:Date = new Date("2018-01-29");
time:string = "09:00:00";

我想在日期和时间组合时获得一个日期时间值,如下所示:

Mon Jan 29 2018 09:00:00 GMT+0300 (GMT+03:00)

我该怎么做?

最佳答案

这是一种简单的方法:

const date: Date = new Date("2018-01-29");
const time: string = "09:00:00";
const newDate: Date = new Date(date.toDateString() + ' ' + time);

console.log(newDate);

JS 演示:

const date = new Date("2018-01-29");
const time = "09:00:00";
const newDate = new Date(date.toDateString() + ' ' + time);

console.log(newDate);

关于javascript - 我如何结合日期时间值和时间值 typescript ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53556206/

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