push method javascript

WBOY
Release: 2023-05-22 13:44:07
Original
826 people have browsed it

In JavaScript, an array is a collection of data elements stored in a single variable. Arrays can contain any type of data elements and any number of elements. In order to add new elements to a JavaScript array, you can use the push method.

The push method is a built-in method of JavaScript array objects, used to add one or more elements to the end of the array. This method modifies the original array and returns the new length of the array. It can use the following syntax:

array.push(element1, element2, ..., elementX)

where array is the array to which elements are to be added, element1, element2, ..., elementX is One or more elements to add to the end of the array.

The following is an example of the push method:

var fruits = ["banana", "apple", "orange"]; fruits.push("grape"); console.log(fruits); // ["banana", "apple", "orange", "grape"]
Copy after login

In this example, we define an array fruits containing three fruits. We then added a new fruit "grape" using the push method and printed the modified array. The fruits array now contains four elements, including the newly added "grape".

You can also add multiple elements using the push method, as shown below:

var numbers = [1, 2, 3]; numbers.push(4, 5, 6); console.log(numbers); // [1, 2, 3, 4, 5, 6]
Copy after login

In this example, we define an array numbers containing three numbers. We then use the push method to add three new numbers 4, 5 and 6 and print the modified array.

If you don't know how many elements you want to add to the array, you can use an iterator (such as a for loop), for example:

var numbers = [1, 2, 3]; for (var i = 4; i <= 6; i++) { numbers.push(i); } console.log(numbers); // [1, 2, 3, 4, 5, 6]
Copy after login

In this example, we use a for loop to The array numbers adds the numbers 4, 5 and 6. In each iteration, we call the push method to add the current number to the end of the array, and finally print out the modified array.

Finally, if you want to add all elements of another array to the current array, you can use the apply method as follows:

var array1 = [1, 2, 3]; var array2 = ["a", "b", "c"]; Array.prototype.push.apply(array1, array2); console.log(array1); // [1, 2, 3, "a", "b", "c"]
Copy after login

In this example, we define two Arrays array1 and array2 of different types. We then use the apply method to add all elements of array2 to array1 and print out the modified array.

In short, the push method is a very useful method in JavaScript arrays, which allows you to easily add one or more elements to the end of the array. This method is very convenient as it makes it easy to add new elements to any array without having to resize the array or create a new array.

The above is the detailed content of push method javascript. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!