스토리지 getItem 메서드

getItem(
  key: string
): string | null;

주어진 키와 연결된 현재 값, 또는 주어진 키가 없는 경우 null을 반환합니다.

예시

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