diff --git a/README.md b/README.md new file mode 100644 index 0000000..25f69ad --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# JavaScript Stack + +In this repository you can find simple implementions of the stack data structure. + +- Branch "WeakMap" contains a stack implementation using JS WeakMap data structure. +- Branch "Array" contains a stack implementation using JS Array data structure.