
- 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
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
TypeScript - Array push()
push() method appends the given element(s) in the last of the array and returns the length of the new array.
Syntax
array.push(element1, ..., elementN);
Parameter Details
element1, ..., elementN − The elements to add to the end of the array.
Return Value
Returns the length of the new array.
Example
var numbers = new Array(1, 4, 9); var length = numbers.push(10); console.log("new numbers is : " + numbers ); length = numbers.push(20); console.log("new numbers is : " + numbers );
On compiling, it will generate the same code in JavaScript.
Its output is as follows −
new numbers is : 1,4,9,10 new numbers is : 1,4,9,10,20
typescript_arrays.htm
Advertisements