数组copyWithin()方法以及JavaScript中的示例

JavaScript copyWithin()方法 (JavaScript copyWithin() method)

copyWithin() method is used to copy the specified elements from an array and replace from specified index within the same array. It changes the this array (actual array).

copyWithin()方法用于从数组中复制指定的元素,并从同一数组中的指定索引进行替换。 它将更改此数组(实际数组)。

Syntax:

句法:

    array.concat(target_index, [start_index], [end_index]);

Parameters:

参数:

  • target_index is an index in the same array to replace the elements.

    target_index是同一数组中用于替换元素的索引。

  • start_index is an optional parameter and it's default value is 0, it is used to specify the source start index to copy the elements.

    start_index是一个可选参数,默认值为0,用于指定要复制元素的源起始索引。

  • end_index is also an optional parameter and it's default value is array.lentgh, it is used to specify the source end index.

    end_index也是一个可选参数,默认值为array.lentgh ,用于指定源结束索引。

Example:

例:

    Input:
    var names = ["Manju", "Amit", "Abhi", "Radib", "Prem"];

    Function call:
    names.copyWithin(2, 0);
    
    Output:
    Manju,Amit,Manju,Amit,Abhi

JavaScript Code to demonstrate example of Array.copyWithin() method

JavaScript代码演示Array.copyWithin()方法的示例



JavaScipt Example



	



Output

输出量

Before function call...
names: Manju,Amit,Abhi,Radib,Prem
After function call...
names: Manju,Amit,Manju,Amit,Abhi
Before function call...
arr: 10,20,30,40,50,60,70,80,90,100
After function call...
arr: 10,20,30,40,50,60,20,30,40,100


翻译自: https://www.includehelp.com/code-snippets/array-copyWithin-method-with-example-in-javascript.aspx

你可能感兴趣的:(java,python,numpy,js,javascript)