스택은 LIFO 구조이다. Array.prototype 형태로 스택과 비슷한 메소드들이 구현되어 있어 쉽게 응용가능하다.
- e.g. 접시쌓기
const stack = [];
stack.push(1);
stack.push(2);
stack.push(3);
stack[stack.length - 1]; // peek 3
stack.pop(); // 3
stack.pop(); // 2
stack.pop(); // 1
- CreatedAt 2022.12.04