diff --git a/README.md b/README.md new file mode 100644 index 0000000..4830d13 --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +## list.js + +Manually performing operations on Array instead of native operations + +### operations + +1. Add +2. Retrieve +3. Remove +4. Shift +5. Unshift + +### LICENSE + +MIT (c) Gaurav Nanda 2018 diff --git a/list.js b/list.js index 4387986..3965e50 100644 --- a/list.js +++ b/list.js @@ -50,4 +50,4 @@ class List { return value; } -} \ No newline at end of file +}