TypeScript中的Date对象与JavaScript中的Date对象用法基本相同。可以使用Date构造函数来创建一个新的Date对象,也可以使用Date的方法来获取和设置日期时间信息。
以下是一些Date对象的常用方法示例:
let currentDate = new Date();
let year = currentDate.getFullYear();
let month = currentDate.getMonth();
let day = currentDate.getDate();
currentDate.setFullYear(2022);
currentDate.setMonth(5);
currentDate.setDate(15);
let hours = currentDate.getHours();
let minutes = currentDate.getMinutes();
let seconds = currentDate.getSeconds();
currentDate.setHours(12);
currentDate.setMinutes(30);
currentDate.setSeconds(0);
let formattedDate = currentDate.toISOString();
console.log(formattedDate);
这只是Date对象的一些基本用法示例,根据实际需求可能会有更多的方法和属性可供使用。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。