NavigationDestination: getState() method

The getState() method of the NavigationDestination interface returns a clone of the developer-supplied state associated with the destination NavigationHistoryEntry, or navigation operation (e.g., navigate()) as appropriate.

Syntax

js
getState()

Parameters

None.

Return value

A value representing the state. This can be any type.

If no state is defined, it returns undefined.

Exceptions

None.

Examples

js
navigation.addEventListener("navigate", (event) => {
  console.log(event.destination.getState());
});

Specifications

See also