JavaScript中有哪些数组原生的方法?

JavaScript中的数组原生方法是指数组对象上内置的方法,它们可以直接通过数组实例进行调用。以下是一些常见的数组原生方法以及它们的用法和示例:

1:push 方法用于向数组的末尾添加一个或多个元素,并返回新数组的长度。它会修改原始数组。
示例:

const array = [1, 2, 3];
const length = array.push(4, 5);
console.log(length); // 输出:5
console.log(array); // 输出:[1, 2, 3, 4, 5]

2:pop 方法用于从数组的末尾移除最后一个元素,并返回被移除的元素。它会修改原始数组。
示例:

const array = [1, 2, 3];
const removedElement = array.pop();
console.log(removedElement); // 输出:3
console.log(array); // 输出:[1, 2]

3:shift 方法用于从数组的开头移除第一个元素,并返回被移除的元素。它会修改原始数组。
示例:

const array = [1, 2, 3];
const removedElement = array.shift();
console.log(removedElement); // 输出:1
console.log(array); // 输出:[2, 3]

4:unshift 方法用于向数组的开头添加一个或多个元素,并返回新数组的长度。它会修改原始数组。
示例:

const array 

你可能感兴趣的:(前端面试题合集,javascript,前端,开发语言)