Skip to content

Instantly share code, notes, and snippets.

@imbhargav5
Created September 16, 2020 11:03
Show Gist options
  • Save imbhargav5/5b2e040470f09ff1388a1e06049667a1 to your computer and use it in GitHub Desktop.
Save imbhargav5/5b2e040470f09ff1388a1e06049667a1 to your computer and use it in GitHub Desktop.
Stack with private fields
class Stack{
#array = []
push(val){
return this.#array.push(val);
}
pop(){
return this.#array.pop();
}
isEmpty(){
return this.#array.length == 0
}
peek(){
if(this.isEmpty()){
return undefined;
}
return this.#array[this.#array.length - 1];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment