How to add new elements to an array in js
js adds new elements to the array, we can use the push method to add. The push() method adds elements to the end of the array and returns the new length of the array.
Below we will introduce to you the js method of adding elements to an array with specific code examples.
The code example is as follows:<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>js往数组中添加新元素的示例</title> </head> <body> <div id="result"></div> <script> var arr = ["朱老师","灭绝","西门"]; arr.push("欧阳克"); console.log(arr); arr.push("韦小宝","小龙女"); console.log(arr); for(var i = 0;i < arr.length; i++){ document.write("<p>" + arr[i] + "</p>"); } </script> </body> </html>
console.log() to output the new array content to the front console, as follows:
push() method adds one or more elements to the end of the array and returns the new length.
push() method can add its parameters to the end of arrayObject in sequence. It directly modifies the arrayObject instead of creating a new array. The push() method and pop() method use the first-in-last-pop function provided by the array.Note: To add one or more elements to the beginning of the array, please use the unshift() method.
This article is an introduction to the method of adding new elements to an array in js. It is also very simple. I hope it will be helpful to friends in need!The above is the detailed content of How to add new elements to an array in js. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)
