.empty()
Published Jul 29, 2022Updated Mar 8, 2023
Contribute to Docs
The .empty()
method returns true
if the stack
has no elements. Otherwise, it returns false
.
Syntax
The .empty()
method can be called on a stack
using the following syntax:
stackName.empty();
Codebyte Example
The following example uses the .empty()
method to loop through the values of myStack
and pop off the next value until it is empty:
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.