Create the Stack data structure using TypeScript

InstructorPaul McBride

Share this video with your friends

Send Tweet

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