3 methods: 1. Use unshift() to insert an element at the beginning, the syntax is "array object.unshift(element)"; 2. Use push() to insert an element at the end, the syntax "Array object.push(element)"; 3. Use concat(), the syntax is ""array.concat(element)".
The operating environment of this tutorial :windows7 system, ECMAScript version 6, Dell G3 computer.
es6 Three ways to add an element to an array
1 , Use the unshift() function
The unshift() function can insert elements at the beginning of the array. This function can append one or more parameter values to the head of the array:
array.unshift(元素1, 元素2, ..., 元素X)
The first parameter Element1
is the new element 0 of the array, the second parameter Element2
is the new element 1, and so on, and finally returns the length of the array after adding the element.
Let’s take a closer look at the following example:
var a = [0]; //定义数组 console.log(a); //返回[0] a.unshift(1); //增加1个元素 console.log(a); //返回[1,0]
2. Use the push() function
## The #push() method can append one or more parameter values to the end of the array and return the length of the array after adding elements.array.push(元素1, 元素2, ..., 元素X)Let’s take a look at the following example:
var a = [0]; //定义数组 console.log(a); //返回[0] a.push(2); //增加1个元素 console.log(a); //返回[0,2]
3. Use the concat() function
The concat() method can connect two or more arrays and will use one or more arrays as parameters. Elements of multiple arrays are added to the end of the specified array.You can also insert one or more given elements, and all the parameters passed can be added to the end of the array in order.
var a = [1,2,3,4,5]; //定义数组 console.log(a); var b = a.concat(6); //为数组a连接1个元素 console.log(b);The output result is:
##Explanation: The concat() method will create and return a new array instead of adding new elements to the original one; but unshift The () method will add elements based on the original array.
[Related recommendations:
javascript video tutorialThe above is the detailed content of How to add an element to an array in es6. For more information, please follow other related articles on the PHP Chinese website!

在ES6中,可以利用数组对象的reverse()方法来实现数组反转,该方法用于颠倒数组中元素的顺序,将最后一个元素放在第一位,而第一个元素放在最后,语法“array.reverse()”。reverse()方法会修改原始数组,如果不想修改需要配合扩展运算符“...”使用,语法“[...array].reverse()”。

步骤:1、将两个数组分别转为set类型,语法“newA=new Set(a);newB=new Set(b);”;2、利用has()和filter()求差集,语法“new Set([...newA].filter(x =>!newB.has(x)))”,差集元素会被包含在一个set集合中返回;3、利用Array.from将集合转为数组类型,语法“Array.from(集合)”。

在es6中,可用Object对象的is()方法来判断两个对象是否相等,该方法检测两个变量的值是否为同一个值,判断两个对象的引用地址是否一致,语法“Object.is(对象1,对象2)”;该方法会返回布尔值,若返回true则表示两个对象相等。

转换方法:1、利用“+”给数字拼接一个空字符,语法“数字+""”;2、使用String(),可把对象的值转换为字符串,语法“String(数字对象)”;3、用toString(),可返回数字的字符串表示,语法“数字.toString()”。

删除方法:1、用shift()删除第一个元素,语法“arr.shift()”;2、用pop()删除最后一个元素,语法“arr.pop()”;3、用splice()根据下标删除任意元素,语法“arr.splice(开始下标,删除元素个数)”。

3种转换方法:1、使用join()函数把数组中的所有元素放入一个字符串,语法“数组对象.join(分隔符)”;2、使用toString()函数,语法“数组对象.toString()”或“数组对象.toString().replace(/,/gi,'分隔符')”;3、使用toLocaleString()函数,语法“数组对象.toLocaleString()”。

some和every是es6方法。some()和every()是es6 Array对象新增的方法,some()用于检测数组中是否存在符合条件的元素,只要有一个符合就会返回true;而every()用来检测数组的所有元素是否都满足指定的条件。

转换方法:1、使用“for in”语句将类数组对象转换为数组,语法“for(var i in obj){console.log(arr.push(obj[i]));}”;2、使用内置对象keys和valus,语法“Object.keys(obj)”和“Object.values(obj)”;3、使用Array对象的from()函数,语法“Array.from(obj)”。


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

WebStorm Mac version
Useful JavaScript development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver Mac version
Visual web development tools

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