DEV Community

Discussion on: Stacks and Queues — BaseCS Video Series

 
namirsab profile image
Namir

You can always "fix" the array if you want by adding a size to the constructor. Then you check if the size is met whenever you push a new value to the stack. So yeah, the language can give you other constructs and other ways to do something, but it's totally possible to do it in JavaScript

Thread Thread
 
nonsobiose profile image
Nonso Biose

Thanks man