type Profile = { name: string; }; function displayName(raw: string): string { const profile = JSON.parse(raw) as Profile; return profile.name.toUpperCase(); } console.log(displayName('{"name":null}'));