Vidyalelo
JavaScript · Q4

Invocation And Performance Navigation

Programming · JavaScript · question 4

Q4

Which of the following computation is correct to calculate the time taken for page load once the page is received from the server?

A.
responseEnd-loadEventEnd
B.
loadEventEnd-responseEnd
Answer
C.
loadEventEnd/responseEnd
D.
responseEnd/loadEventEnd

Answer: Option B

Solution

Answer: Option B
Solution:
The time taken for page load once the page is received from the server: loadEventEnd-responseEnd.