📅  最后修改于: 2023-12-03 15:01:37.306000             🧑  作者: Mango
JavaScript Date setMilliseconds()方法是Date对象的一个方法,用于设置Date对象的毫秒数。它会返回一个新的时间,而不会修改原来的时间对象。
Date.setMilliseconds(milliseconds)
let date = new Date('2021-05-26T04:15:32.000Z'); // 创建一个Date对象
console.log(date); // 输出:Wed May 26 2021 12:15:32 GMT+0800 (中国标准时间)
date.setMilliseconds(500); // 设置毫秒数为500
console.log(date); // 输出:Wed May 26 2021 12:15:32 GMT+0800 (中国标准时间)
date.setMilliseconds(0); // 设置毫秒数为0
console.log(date); // 输出:Wed May 26 2021 12:15:32 GMT+0800 (中国标准时间)
date.setMilliseconds(-1); // 设置毫秒数为负数
console.log(date); // 输出:Wed May 26 2021 12:15:31 GMT+0800 (中国标准时间)