数组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()方法的示例

<html>
<head>
<title>JavaScipt Example</title>
</head>
<body>
<script>
var names = ["Manju", "Amit", "Abhi", "Radib", "Prem"];
document.write("Before function call...<br>");
document.write("names: " + names + "<br>");
//copy from 0th index and replace from 2nd index
names.copyWithin(2);
document.write("After function call...<br>");
document.write("names: " + names + "<br>");	
//another example
var arr = [10, 20, 30, 40, 50, 60, 70, 80, 90, 100];
document.write("Before function call...<br>");
document.write("arr: " + arr + "<br>");		
//copy from 1st index to 3rd and replace from 6th index
arr.copyWithin(6,1,4);
document.write("After function call...<br>");
document.write("arr: " + arr + "<br>");				
</script>
</body>
</html>

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

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/545821.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

多图带你彻底理解Java中的21种锁!

作者 | 悟空聊架构来源 | 悟空聊架构&#xff08;ID&#xff1a;PassJava666&#xff09;本篇主要内容如下&#xff1a;本篇主要内容本篇文章已收纳到我的Java在线文档、 Github我的SpringCloud实战项目持续更新中帮你总结好的锁&#xff1a;序号锁名称应用1乐观锁CAS2悲观锁sy…

杨辉三角——数组解决

杨辉三角如图下所示&#xff0c;每一行的第一个数和最后一个数都为1&#xff0c;每一行中间的数&#xff08;出去第一个和最后一个&#xff09;a等于上一行与其相同列数的数b与数b前面的数之和。例&#xff1a; 第3行第2列的数是3&#xff0c;它就等于第2行第2列的数&#xff…

作文议论文开头结尾

一、 开头篇 1. Nowadays, it is commonly/widely/generally believed that…., but I wonder… 如今&#xff0c;人们普遍认为……&#xff0c;但是我怀疑…… 2. With the rapid growth of… … have/has become increasingly important in our daily life. 随着……的快速…

VS生成的exe文件如何在其他电脑上运行

在VS编译器上编写的程序都会生成一个exe文件&#xff0c;有时候写了一个很装逼的程序想在别人电脑炫耀一下&#xff0c;奈何将这个exe文件拷贝过去并不能运行&#xff0c;直接宣告装逼失败。为此将介绍一下如何将生成的exe文件在其他电脑上运行&#xff0c;步骤如下&#xff1a…

dumpstack_Java Thread类的静态void dumpStack()方法(带示例)

dumpstack线程类静态void dumpStack() (Thread Class static void dumpStack()) This method is available in package java.lang.Thread.dumpStack(). 软件包java.lang.Thread.dumpStack()中提供了此方法。 This method is used to print or display stack tracing of the cur…

netty websocket 简单消息推送demo

2019独角兽企业重金招聘Python工程师标准>>> 今天心情很不好&#xff01;&#xff01;&#xff01; 原因保密。 这篇是基于"netty与websocket通信demo"。 错误想法&#xff1a;大量客户请求&#xff0c;共用一个worker&#xff0c;来实现推送。 正确作法&…

给 JDK 官方提了一个 Bug,结果...

图 by&#xff1a;石头北京-望京关于作者&#xff1a;程序猿石头(ID: tangleithu)&#xff0c;现任阿里巴巴技术专家&#xff0c;清华学渣&#xff0c;前大疆后端 Leader。背景分享一下之前踩的一个坑&#xff0c;背景是这样的&#xff1a;我们的项目依赖于一个外部服务&#x…

Of Study - Francis Bacon

Of StudyFrancis Bacon 弗朗西斯培根Studies serve for delight, for ornament, and for ability. Their chief use for delight, is in privateness and retiring; for ornament, is in discourse;and for ability, is in the judgment and disposition of business.For expe…

解决exe文件在别人电脑上运行缺失文件情况

这里就以vs2013为例&#xff1a;编译后生成的exe文件拷贝到别人电脑上运行是会弹出一个窗口说缺失MSVCR120.dll和MSVCR120D.dll这两个文件。&#xff08;其他vs版本的编译器在所提示的缺失文件按下述方法也可解决&#xff09;下面就介绍一种方法解决。 1、在VS2013软件中找到MS…

Java日历的getMinimalDaysInFirstWeek()方法和示例

Calendar类的getMinimalDaysInFirstWeek()方法 (Calendar Class getMinimalDaysInFirstWeek() method) getMinimalDaysInFirstWeek() method is available in java.util package. getMinimalDaysInFirstWeek()方法在java.util包中可用。 getMinimalDaysInFirstWeek() method is…

HighCharts: 设置时间图x轴的宽度

这个x轴宽度的设置整了好久&#xff0c;被老板催的要死highcharts的api文档很难找&#xff0c;找了半天也没找到&#xff0c;网上资料少&#xff0c;说的试了下&#xff0c;也没有&#xff0c;我用的图里api文档里没有介绍&#xff0c;这个属性不知道的话&#xff0c;根本不好找…

32张图带你彻底搞懂事务和锁!

作者 | 悟空聊架构来源 | 悟空聊架构&#xff08;ID&#xff1a;PassJava666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;PassJava&#xff09;本篇主要内容如下&#xff1a;本篇主要内容一、事务1.1 什么是事务为单个工作单元而执行的一系列操作。如查询、修改数…

C++总结篇(1)命名空间及引用

1、命名空间 1.1概念&#xff1a; 用我自己的话说就是规定一个空间&#xff0c;在该空间内定义的变量和函数只限于在该空间内使用&#xff0c;在该空间外无法直接调用。需要调用须加域名&#xff0c;这也就使得避免了同名变量或者函数引起的冲突。 1.2命名空间定义: 定义命名空…

分布式映射与集中式映射_K映射上的表达式映射和组包围

分布式映射与集中式映射In the previous article (Karnaugh Map 2, 3 and 4- variable) we have already discussed the designing of K-Map and various forms in which they are represented based on either they are being mapped for minterm or maxterm. 在上一篇文章( 卡…

phrases

短语 To get the better/best of you 打败&#xff0c;胜过To get the most/utmost out of 有效地使用或利用Overall trend Compactly- built a man of medium build Heavily-built Level off, remain stable, stay constantPlateau fluctuateThe outlay on cars are …

Datagridview拖放数据到TreeView

通过Datagridview控件可以显示数据库记录sender:表示支持.net framework类层次结构中所有类的基类对象.e:表示为mousedown 事件提供数据.private void treeview1_mouseenter(object sender,eventargs e)拖放可以选定单行或者多行.1.选定一条在控件中默认状态下行标题选定.按ctr…

JDK 竟然是这样实现栈的?

作者 | 王磊来源 | Java中文社群&#xff08;ID&#xff1a;javacn666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;前面的文章《动图演示&#xff1a;手撸堆栈的两种实现方法&#xff01;》我们用数组和链表来实现了自定义的栈结构&#xff…

layui如何自定义layedit富文本编辑器工具栏

layui自带了layedit富文本编辑器&#xff0c;我们在使用过程中有时候不需要全部工具&#xff0c;或者想自定义工具栏&#xff0c;该如何弄呢&#xff1f;以下方法教大家自定义自己的layedit编辑器。 步骤1&#xff1a;定义存放编辑器的盒子 <div class"layui-form-it…

C++总结篇(2)类和对象

1、类 1.1类的定义: C是一门面向对象的语言&#xff0c;便就引入了类的概念&#xff0c;类在一定程度上与C语言中的结构体很相似。Class为定义类的关键字&#xff0c;如下示例&#xff1a; class student {char name[10];int age;int print(); };类不仅可以用class来定义&a…

小程序 || 语句_C ++条件语句| 查找输出程序| 套装1

小程序 || 语句Program 1: 程序1&#xff1a; #include <iostream>using namespace std;int main(){if (NULL) {cout << "Hello World";}else {cout << "Hii World";}return 0;}Output: 输出&#xff1a; Hii WorldExplanation: 说明&…