Blogger Information
Blog 17
fans 0
comment 0
visits 11504
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
slice与splice的作用——1月16号
iL的博客
Original
723 people have browsed it

 

slice()函数

slince()函数主要作用是对数组进行选择,

 

如:slice(a,b)

其中第a个为在数组中开始的位置,第(b-1)个元素为结束位置

 

如图:

1.png

因为在数组中位置是从0开始数的,a=1,b=3,

那么我们选中的数就是第1个(2),第(3-1)个(3)

 

如果传的值是负数,

例如:arr.slice(1,-2)

输出结果就为[2,3,4]

 

数的选择顺序如图所示

2.jpg

 

如果只传一个值,则会从给数值开始,一直到该数组最后一个数值结束,

如图:

3.png

 

如果传一个正值,且大于该数组的数值个数,那会返回为空

如图:

4.png

 

如果传一个负值,且绝对值大于数组中的数值个数,则会全部选择

如图:

5.png

 

 

 

splice()函数

主要作用就是在数组的指定位置添加/删除数值

 

splice(a,b,c)

其中

a是要添加/删除的数值在数组中的所在位置

b是要删除的数值的个数,b=0则不删除数值

c是要添加的数值

 

如图:

6.png

返回的值为我们删除的值,此时输出arr查看

 

如图:

7.png

可以发现从2位置往后数两个数值都被删除,然后‘js’被添加进去。

 

 

 

 

 

 

 

 

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post