Build a Queue data structure in TypeScript

InstructorPaul McBride

Share this video with your friends

Send Tweet

A queue is FIFO (First In First Out) list. When you remove elements from the queue, oldest item is removed first. In this lesson we'll cover how to implement a queue using TypeScript. Queue based questions are common in technical interviews, so it useful to be familiar with how they work.