Co-Authored-By: ecraig12345 <ecraig12345@gmail.com>
This commit is contained in:
Kenneth Chau 2019-02-28 15:02:24 -08:00 коммит произвёл GitHub
Родитель 419837ba2e
Коммит 2c5572f3f1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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