Vidyalelo
JavaScript · Q21

Document Object Model And Event Handling

Programming · JavaScript · question 21

Q21

What is the code snippet to go back to a history twice?

A.
history(2);
B.
history(-2);
C.
history.go(-2);
Answer
D.
history.go(2);

Answer: Option C

Solution

Answer: Option C
Solution:
The above code snippet goes back 2, like clicking the Back button twice.