Which of the following statements is NOT a valid way to create a date object named birthday?
var birthday = "12/2/1978";
var birthday = new Date ();
var birthday = new Date ("12/2/1978");
var birthday = new Date (1978, 11, 2);
+3
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Which of the following statements is NOT a valid way to create a date object named birthday? var birthday = "12/2/1978"; var birthday = new ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Home » Computers & Technology » Which of the following statements is NOT a valid way to create a date object named birthday? var birthday = "12/2/1978"; var birthday = new Date (); var birthday = new Date ("12/2/1978"); var birthday = new Date (1978, 11, 2);