Given code snippet, implement efficient caching
Frontend Software Engineer Interview Questions
869 frontend software engineer interview questions shared by candidates
Implement simple event management class
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");
Describe how do you prefer giving and receiving feedback
The third challenge was to fill a matrix with each cell representing a cell color, using a bucket fill that will only paint the adjacent cells, calculate the number of fills needed to paint all the matrix.
General frontend-focused questions that are anchored on both your experience & the position you applied for
4th round: System Design - Was asked to do a High Level Design of a web app similar to hello fresh (scheduled 2 weeks after 3rd round)
Basic questions about HTML, CSS, JS and the framework you work with.
Swap two number without using extra variables
Calculate total price of the cart
Viewing 261 - 270 interview questions