What is the result of the following code?
const date = new Date(2023, 10, 25);
date.setDate(32);
console.log(date.getDate());
What is the result of the following code?
const date = new Date(2023, 10, 25);
date.setDate(32);
console.log(date.getDate());