setSeconds()

Обновлено: 09.03.2023

Приклад

Встановіть секунди на 35:

const d = new Date();
d.setSeconds(35);

Визначення та використання

Метод setSeconds() встановлює секунди для об’єкта дати.

Цей метод також можна використовувати для встановлення мілісекунд.

Підтримка браузера

setSeconds

Посмотреть совместимость на Can I use?

setSeconds

Синтаксис

Date.setSeconds(sec, millisec)

Значення параметрів

ParameterDescription
secRequired. An integer representing the seconds

Expected values are 0-59, but other values are allowed:

  • -1 will result in the last second of the previous minute
  • 60 will result in the first second of the next minute
millisecOptional. An integer representing the milliseconds

Expected values are 0-999, but other values are allowed:

  • -1 will result in the last millisecond of the previous second
  • 1000 will result in the first millisecond of the next second


Технічні деталі

Повернене значення: Число, що представляє кількість мілісекунд між обєктом дати та північчю 1 січня 1970 р.
Версія JavaScript: ECMAScript 1