The usual questions around career path. Questions about ways of working. How to approach different situations. The take-home test consisted in creating a form to provide a rating and comment and then display submitted results as a chart as well as the most recent comments.
Senior Frontend Developer Interview Questions
1,608 senior frontend developer interview questions shared by candidates
How call, bind, apply works in JS
Technical screening interview: - Count word repetitions in a paragraph - DFS problem (sum of leaf nodes in a binary tree)
Design the frontend architecture to filter and display real time logs (Live Tail view).
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.).
Why do you want to work here?
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");
let vs var - event loop - what's react (really????)
Describe closures
1 or 2 easy DSA questions around Array and String. Logical puzzles. Few questions regarding javascript and browser.
Viewing 491 - 500 interview questions