LinkedIn frontend engineer interviews emphasise JavaScript, DOM manipulation, CSS, accessibility, browser APIs, and UI component architecture.
No verified questions yet for LinkedIn.
class DebouncedEventEmitter { emit(event: string, data: any): void; on(event: string, callback: Function): void; constructor(delay: number); }Example 1:const emitter = new DebouncedEventEmitter(200).emitter.on('notify', (data) => console.log(data)); and emitter.emit('notify', 'You have a new message!'), it should log once after 200ms of inactivity.Constraints:emit within the specified delay.class Router { constructor(routes: Map<string, Function>); navigate(url: string): void; on(url: string, handler: Function): void; }Example 1:const router = new Router(new Map([['/', () => 'Home'], ['/profile', () => 'Profile']]))router.navigate('/') should call the handler for home and update the view accordingly.Constraints:Sign up for free to access walkthroughs, AI-generated questions, and more.
Get Started Free