Created
September 16, 2020 11:03
-
-
Save imbhargav5/5b2e040470f09ff1388a1e06049667a1 to your computer and use it in GitHub Desktop.
Stack with private fields
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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