2. FRONTEND SYSTEM DESIGN (1 hour, Zoom and Excalidraw). The task was to architect a solution for a frontend app (no need to discuss typical system design topics like load balancers, etc). The idea is to determine a basic design and user flow / UX for the application described. The major considerations were application performance, user interactions, frontend-backend interactions (what endpoints and what kind of data and why), data structures/state, and any libraries or techniques you would use. It was important to identify performance bottlenecks and their solutions (dom rendering, lazy loading, caching, etc.).
Senior Frontend Engineer Interview Questions
2,913 senior frontend engineer interview questions shared by candidates
2. Promises and Chaining Example: console.log("Start"); const x = new Promise((resolve) => { setTimeout(() => resolve(1), 100); }); x.then((d) => { console.log(d); return d * 2; }) .then((d) => { console.log(d); return d * 3; }); x.then((d) => { console.log(d); return d * 5; }) .then((d) => { console.log(d); return d * 7; }); console.log("Reached");
When you visit an website throught your brower, could you explain what will happend when you "enter"
- General web technology questions (what happens when you enter a URL into a browser) - Basic React (state management, effects, React children behavior when parent state changes) - Intermediate - advanced React concepts (useCallback, refs) - Redux as it's used a lot at Docusign
Describe closures
No questions were asked yet.
1 or 2 easy DSA questions around Array and String. Logical puzzles. Few questions regarding javascript and browser.
Can you implement structuredClone by yourself?
A couple Javascript trivia questions about promises and closures in the middle
Don't really remember the HR questions, they provide in advance the topic for the feature building and system design
Viewing 791 - 800 interview questions