Storage getItem method

getItem(
  key: string
): string | null;

Returns the current value associated with the given key, or null if the given key does not exist.

Examples

let starsEarned = Number(GameSnacks.storage.getItem('starsEarned'));