-
Array.join()方法
所述array.join()方法是在JavaScript一个内置函数,其用于将阵列的元件连接成一个字符串的字符串.The元件将由指定的分隔符和它的默认值被分离是逗号(,)。句法:
array.join(separator)
-
Array.push()方法
array.push()函数用于推入数组中的一个或多个值。此函数通过添加到数组中的元素数来更改数组的长度。该函数的语法如下:
句法:
arr.push(element1[, ...[, elementN]])
参数:此函数可以包含与要插入数组的元素数量一样多的参数。
返回值:在将参数插入数组后,此函数返回具有新值的新数组。
-
Array.splice()方法
JavaScript中的数组类型为我们提供了splice()方法,该方法通过在所需/所需索引处删除并插入新元素来替换现有数组的项。句法:
array.splice(start_index, delete_count, value1, value2, value3, ...)
注意: Splice()方法从start_index元素开始删除数组的零个或多个元素,并用参数列表中指定的零个或多个元素替换这些元素。
示例:以下示例说明了将.join()方法与push()方法和splice()方法一起使用的示例:
GeeksForGeeks
use .join() with push and replace together
The join() method joins array elements into
a string.
The splice() method that helps us in order to
replace the items of an existing array by removing and inserting
new elements at the required/desired index.
The push() method appends a new element to an
array.
输出:
在单击“推送和拼接”按钮之前:
单击“推动并删除”按钮后的输出: