KAkiran ashokininterviewexperiencepost1.hashnode.dev·May 27, 2025 · 4 min readFrontend Interview Questions:Identify issues in the following code Question1 : The Code: async function fetchData(url: string): Promise<any> { const response = await fetch(url); const { data } = await response.json(); return { data }; } const result = fetchData('https://a...01F