Given a list of schedules, provide a list of times that are available for a meeting Example input: [ [[4,5],[6,10],[12,14]], [[4,5],[5,9],[13,16]], [[11,14]] ] Example Output: [[0,4],[11,12],[16,23]]
Front End Developer Interviews
Front End Developer Interview Questions
Front end developers are responsible for the interaction between web pages and users by designing and creating webpages using HTML, CSS, and JavaScript. Knowledge and experience with these three programming languages and their supporting tools is a must for employers. During an interview, be prepared to answer technical questions and to talk about past web development experience.
21,103 front end developer interview questions shared by candidates
Find the Kth hisghest element in a given array.
Can you write a function that deeply flattens an array?
How many times would `addEventListener('scroll', handleScroll);` run as the user looks at their News Feed? And what would be user experience if the `handleScroll` function takes 100ms to execute.
write a function and return true or false if there is a pair of number that sum up as 10.
Write a basic template engine class
Related to question 1, how could you implement debouncing? Say you wanted the `handleScroll` function to be called only after 200ms has passed between scroll events.
How do you draw a diagonal line on a page without using SVG/VML ?
Have you ever had a conflict with a coworker and how did you handle it?
How many characters in the front of a string would need to be added in order to make it a palindrome.
Viewing 31 - 40 interview questions