From 2665f751b3dcf498771340b808a73ccadaea5728 Mon Sep 17 00:00:00 2001 From: Nir Parisian Date: Sat, 3 Nov 2018 11:54:22 +0200 Subject: [PATCH] add readme to the branch --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 README.md 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.