What is your favourite Pokemon.
Senior Front End Developer Interview Questions
1,442 senior front end developer interview questions shared by candidates
Same question, find the intersecting values of 2 arrays but handle duplicate values. This time "handle" means include duplicates in the output.
To implement a function that return the result of a N async processes.
explain to me about micro-frontends, shadow-dom, and web components.
did you know about audio and video tag in HTML5?
Create a dialog pop-up using plain HTML and Javascript. - Clicking the button should display a modal dialog with a form with two inputs and a submit button
It was about Frontend technology. What were your roles/responsibilities?
Q: What is your hiring experience and strategy?
//Give me the output console for the following piece of code : var foo = 'foo'; function bar() { setTimeout(() => { console.log(foo); }, 0); console.log(foo); // undefined console.log(bar()); // undefined console.log(foo); // bartwo var foo = 'bar'; function bar() { foo = 'bartwo'; } console.log(foo); // bar } bar(); console.log(foo);
Outer join two arrays const a = [ { id: 3, name: 'Matt' }, { id: 4, name: 'Greg' }, { id: 1, name: 'David' }, { id: 2, name: 'John' } ] const b = [ { id: 7, position: 'Outlier' }, { id: 2, position: 'Leader' }, { id: 3, position: 'Captain' }, { id: 6, position: 'Rogue' }, { id: 4, position: 'VP' }, { id: 5, position: 'Pawn'} ] Should create the following joined array: [ { id: 1, name: 'David', position: null}, { id: 2, name: 'John', position: 'Leader' }, { id: 3, name: 'Matt', position: 'Captain' }, { id: 4, name: 'Greg', position: 'VP' }, { id: 5, position: 'Pawn', name: null } { id: 6, position: 'Rogue', name: null }, { id: 7, position: 'Outlier', name: null } ] Should create the following joined array: [ { id: 1, name: 'David', position: null }, { id: 2, name: 'John', position: 'Leader' }, { id: 3, name: 'Matt', position: 'Captain' }, { id: 4, name: 'Greg', position: 'VP' }, { id: 5, position: 'Pawn', name: null } { id: 6, position: 'Rogue', name: null }, { id: 7, position: 'Outlier', name: null } ]
Viewing 231 - 240 interview questions