.push()

Christine_Yang's avatar
Published Jul 29, 2022Updated Dec 21, 2022
Contribute to Docs

The .push() method adds an element to the top of the stack.

Syntax

The .push() method is called on a stack using the following syntax:

stackName.push(value);

Note: Each value in stackName must be of the same data type.

Codebyte Example

The following example uses adds several values to myStack with the .push() method:

Code
Output
Loading...

All contributors

Contribute to Docs

Learn C++ on Codecademy