Which of these statements create an instance of the Date object?

new Date("1985-10-21");new Date(1985, 9, 21);new Date();Date("1985-10-21");

Yes! We use the new keyword, the Date object and an optional value in the parentheses that follow Date to create an instance of it.

Yikes! We use the new keyword, the Date object and an optional value in the parentheses that follow Date to create an instance of it.