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 } ]
Senior Front End Developer Interview Questions
1,429 senior front end developer interview questions shared by candidates
Q: What is your hiring experience and strategy?
As other people mentioned, the phone screen is relating to Promises and the timing of AJAX calls.
Where do you see yourself in the next five years?
There is several questions, one of it, do you know SEO?
How do you speed up the single page application ?
Prototypal Inheritance
Develop the snake game from scratch with specific rules like keeping track of the points, having a reset button, and changing the points color when you reached a new high score.
1. Write logic for Fibonacci series.
They asked common question from JavaScript and CSS
Viewing 241 - 250 interview questions