Skip to content

Instantly share code, notes, and snippets.

View guilhermedinardi's full-sized avatar
💭
🚀

Guilherme Dinardi guilhermedinardi

💭
🚀
View GitHub Profile
@josethz00
josethz00 / sr-frontend-interview-questions-answered.md
Last active April 3, 2025 15:58
Sr. Frontend Interview Questions

Senior Frontend Interview Questions

Some questions about frontend development that might be in your next job interview. The questions were formulated by @mauvieira, a super senior fullstack developer

General Frontend

  • What are the strategies we can use to optimize the performance of web applications?

    • CDNs, GraphQL (maybe) to reduce overfetching, improve backend performance, use SSR and/or SSG, lazy loading for loading assets only when it's needed, minimize and compress HTML, CSS and JS files, and optimize images by compressing and resizing them.
  • What are Web Vitals (LCP, FID, CLS)? And how are they applied in the real world?