Which statement can a developer apply to increment the browser's navigation history without a page refresh?
window.history.pushState(newStateObject);
window.history.pushStare(newStateObject, ' ', null);
window.history.replaceState(newStateObject,'', null);
window.history.state.push(newStateObject);
Submit