
- TypeScript Tutorial
- TypeScript - Home
- TypeScript - Overview
- TypeScript - Environment Setup
- TypeScript - Basic Syntax
- TypeScript - Types
- TypeScript - Variables
- TypeScript - Operators
- TypeScript - Decision Making
- TypeScript - Loops
- TypeScript - Functions
- TypeScript - Numbers
- TypeScript - Strings
- TypeScript - Arrays
- TypeScript - Tuples
- TypeScript - Union
- TypeScript - Interfaces
- TypeScript - Classes
- TypeScript - Objects
- TypeScript - Namespaces
- TypeScript - Modules
- TypeScript - Ambients
- TypeScript Useful Resources
- TypeScript - Quick Guide
- TypeScript - Useful Resources
- TypeScript - Discussion
TypeScript - Array pop()
pop() method removes the last element from an array and returns that element.
Syntax
array.pop();
Return Value
Returns the removed element from the array.
Example
var numbers = [1, 4, 9]; var element = numbers.pop(); console.log("element is : " + element ); var element = numbers.pop(); console.log("element is : " + element );
On compiling, it will generate the same code in JavaScript.
Its output is as follows −
element is : 9 element is : 4
typescript_arrays.htm
Advertisements