js数组中常用的方法
    English Answer:
    1. Array.prototype.push() Adds one or more elements to the end of an array and returns the new length of the array.
    2. Array.prototype.pop() Removes the last element from an array and returns that element.
    3. Array.prototype.shift() Removes the first element from an array and returns that element.
    4. Array.prototype.unshift() Adds one or more elements to the beginning of an array and returns the new length of the array.
    5. Array.prototype.slice() Creates a new array containing a copy of a specified portion of the original array.
    6. Array.prototype.splice() Adds or removes elements from an array at a specified position, and returns the removed elements.
    7. at() Combines two or more arrays into a new array.
    8. Array.prototype.join() Concatenates the elements of an array into a string.
    9. Array.prototype.indexOf() Returns the first index of a specified element in an array, or -1 if the element does not exist.
    10. Array.prototype.lastIndexOf() Returns the last index of a specified element in an array, or -1 if the element does not exist.
    中文回答:
    1. Array.prototype.push() 将一个或多个元素添加到数组末尾,并返回数组的新长度。
    2. Array.prototype.pop() 从数组中移除最后一个元素并返回该元素。
    3. Array.prototype.shift() 从数组中移除第一个元素并返回该元素。
    4. Array.prototype.unshift() 将一个或多个元素添加到数组开头,并返回数组的新长度。
    5. Array.prototype.slice() 创建一个新数组,包含原始数组指定部分的副本。
    6. Array.prototype.splice() 在指定位置添加或移除数组中的元素,并返回已移除的元素。
    7. at() 将两个或多个数组合并到一个新数组中。
    8. Array.prototype.join() 将数组中的元素连接成一个字符串。
字符串长度js    9. Array.prototype.indexOf() 返回数组中指定元素的第一个索引,如果元素不存在则返回 -1。
    10. Array.prototype.lastIndexOf() 返回数组中指定元素的最后一个索引,如果元素不存在则返回 -1。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。