offline version v3


135 of 264 menu

setDate method

The setDate method allows you to change the value of the day of the month for date object.

Syntax

date.setDate(day);

Example

Let's set the day:

let date = new Date(); date.setDate(1); console.log(date);

See also

enru