InterviewSolution
Saved Bookmarks
| 1. |
What is the parameter of the method Date.parse()?(a) date(b) string(c) datestring(d) string |
|
Answer» The correct answer is (c) datestring To explain: The parse method is defined as Date.parse(datestring). The parse() method parses a date string and returns the number of milliseconds between the date string. |
|