InterviewSolution
Saved Bookmarks
| 1. |
What does the method Performance.now() return?(a) DOMTimeStamp(b) DOMHighResTimeStamp(c) DOMStamp(d) TimeStamp |
|
Answer» The correct choice is (b) DOMHighResTimeStamp The best I can explain: The Performance.now() method returns a DOMHighResTimeStamp, measured in milliseconds, accurate to one thousandth of a millisecond equal to the number of milliseconds since the PerformanceTiming.navigationStart property and the call to the method. The returned value represents the time elapsed since the time origin. |
|