Temporal.PlainTime.prototype.microsecond
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 microsecond 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 micro-giây (10-6 giây) của thời gian này.
Accessor setter của microsecond là undefined. 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 microsecond
js
const time = Temporal.PlainTime.from("12:34:56");
console.log(time.microsecond); // 0
const time2 = Temporal.PlainTime.from("12:34:56.123456789");
console.log(time2.microsecond); // 456
Thay đổi microsecond
js
const time = Temporal.PlainTime.from("12:34:56");
const newTime = time.with({ microsecond: 100 });
console.log(newTime.toString()); // 12:34:56.0001
Bạn cũng có thể sử dụng add() hoặc subtract() để di chuyển một số micro-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({ microseconds: 100 });
console.log(newTime.toString()); // 12:34:56.0001
Đặc tả
| Specification |
|---|
| Temporal> # sec-get-temporal.plaintime.prototype.microsecond> |