Frontend Interview Questions:
May 27, 2025 · 4 min read · 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...
FFarha commented