What will be the output of the following code?
const date = new Date(); date.setDate(15); console.log(date.getDate());
15
The current day of the month
An error
The previous day of the month