Update step2-01/README.md

Co-Authored-By: ecraig12345 <ecraig12345@gmail.com>
This commit is contained in:
Kenneth Chau
2019-02-28 15:02:24 -08:00
committed by GitHub
parent 419837ba2e
commit 2c5572f3f1

View File

@@ -195,7 +195,7 @@ Inside `exercise/src/stack.ts`, create a generic class for a `Stack<T>` complete
> Hint: the JavaScript array already has `push()` and `pop()` implemented for you. That can be your backing store.
In `index.ts`, create a `Stack<number>` and use `console.log()` to demonstrate its functionality.
In `exercise/src/index.ts`, create a `Stack<number>` and use `console.log()` to demonstrate its functionality.
## Spread and Destructuring