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...
interviewexperiencepost1.hashnode.dev4 min read
Farha Salim
Figuring out life one step at a time
Quite concise article with insightful points. Helps! Thank you!