Skip to content

Instantly share code, notes, and snippets.

@GiPyoo
Last active February 20, 2020 10:11
Show Gist options
  • Save GiPyoo/2f488c910b21fe3bb11658febb3223a0 to your computer and use it in GitHub Desktop.
Save GiPyoo/2f488c910b21fe3bb11658febb3223a0 to your computer and use it in GitHub Desktop.
스택을 알아보자
const stack = [];
stack.push("first");
stack.push("second");
stack.pop();
stack.pop();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment