1.0.2 • Published 2 years ago

stack-structure v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

stack-structure

A stack library

Usage

import Stack from "stack-structure";

const stack = new Stack();

Methods

NameParamsReturn value
top()No paramsany: element of top index
empty()No paramsboolean: check empty stack
push(x:any)x: numbervoid: add x element to top stack
pop()No paramsvoid: remove top element of stack

Donation