navigate to route and refresh angular 6

JavaScript
this.router.navigate(['path/to'])
  .then(() => {
    window.location.reload();
  });

Source

Also in JavaScript: