+1 vote
in ReactJS by

What is the purpose of push() and replace() methods of history?

1 Answer

0 votes
by

A history instance has two methods for navigation purpose.

  1. push()
  2. replace()

If you think of the history as an array of visited locations, push() will add a new location to the array and replace() will replace the current location in the array with the new one.

Related questions

+1 vote
asked Mar 2, 2020 in ReactJS by RShastri
0 votes
asked Mar 30, 2020 in ReactJS by amita rallin
...