Temporal.PlainTime.prototype.millisecond

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Thuộc tính truy cập millisecond của các thực thể Temporal.PlainTime trả về một số nguyên từ 0 đến 999 đại diện cho thành phần mili-giây (10-3 giây) của thời gian này.

Accessor setter của millisecondundefined. Bạn không thể thay đổi thuộc tính này trực tiếp. Sử dụng phương thức with() để tạo một đối tượng Temporal.PlainTime mới với giá trị mong muốn.

Ví dụ

Sử dụng millisecond

js
const time = Temporal.PlainTime.from("12:34:56");
console.log(time.millisecond); // 0

const time2 = Temporal.PlainTime.from("12:34:56.123456789");
console.log(time2.millisecond); // 123

Thay đổi millisecond

js
const time = Temporal.PlainTime.from("12:34:56");
const newTime = time.with({ millisecond: 100 });
console.log(newTime.toString()); // 12:34:56.1

Bạn cũng có thể sử dụng add() hoặc subtract() để di chuyển một số mili-giây nhất định từ thời gian hiện tại.

js
const time = Temporal.PlainTime.from("12:34:56");
const newTime = time.add({ milliseconds: 100 });
console.log(newTime.toString()); // 12:34:56.1

Đặc tả

Specification
Temporal
# sec-get-temporal.plaintime.prototype.millisecond

Tương thích trình duyệt

Xem thêm