- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
js里的array,isfinite,number 总结(JS里的阵列,有限,数量总结)
js里的array,isfinite,number 总结(JS里的阵列,有限,数量总结)
1.Array object
Declare an array
Var a =new (Array);
Declare an array with length 5
Var a =new Array (5);
Declare an array and assignment
Var a =new Array ([2] [ABC], [3], [1], [s]); / / length is 4
For (I = 0; I a.length; i++) {
If (! IsNaN (a[i])) {
Alert (a[i]);
}
} / / output value type element value
Shift: delete the original array first, and returns the deleted element value; if the array is empty or undefined
Var a = [1,2,3,4,5];
Var B = a.shift (//a:[2,3,4,5] b:1);
Unshift: add a parameter to the original array at the beginning, and the length of the returned array
Var a = [1,2,3,4,5];
Var B = a.unshift (-2, -1); //a:[-2 -1,1,2,3,4,5] b:7
Note: in the IE6.0 test the return value for undefined, FF2.0 to test the return value is 7, so the method return value is not reliable, need to use the return value when using splice instead of the method to use.
Pop: delete the original array and returns the last item, delete the element value; if the array is empty, return undefined
Var a = [1,2,3,4,5];
Var B = a.pop (//a:[1,2,3,4] b:5//); do not return it directly call it
Push: add a parameter to the original end of the array, and the length of the returned array
Var a = [1,2,3,4,5];
Var B = a.push (6,7); //a:[1,2,3,4,5,6,7] b:7
Concat: return a new array, is to add a parameter to the original form in the array
Var a = [1,2,3,4,5];
Var B = a.concat (6,7); //a:[1,2,3,4,5] b:[1,2,3,4,5,6,7]
Splice (start, deleteCount, val1, val2, deleteCount...): delete items from the start position, and insert the val1 from the starting position, val2,...
In the empty array, only need to transfer startIndex.
If all elements are not deleted, then transfer deleteCount parameters.
Splice also has the first delete add functions, namely remove several elements, and then add some elements in the location of the deletion, the number of elements are removed with the addition of the no must be equal, this time is to use the deleteCount.
Var a = [1,2,3,
您可能关注的文档
- 14福师《教育统计与测量评价》在线作业一(14 Fu division education statistics and measurement evaluation online homework).doc
- 14福师《教育统计与测量评价》在线作业二(14 Fu division education statistics and measurement evaluation online homework two).doc
- 14秋《人际交往与沟通艺术》(14 Autumn Art of human communication and communication).doc
- 14种美味虾餐制作方法揭密--虾的做法大全(14 kinds of delicious shrimp meal production method -- inside shrimp practices Daquan).doc
- 15 并列连词(15 coordinate conjunctions).doc
- 15《古代诗歌四首》教案(15, ancient poetry four lesson plan).doc
- 15the little match girl 拇指姑娘(15the卖火柴的小女孩拇指姑娘).doc
- 15分钟有氧运动 丰胸又收腹(Aerobic exercise and breast abdomen for 15 minutes).doc
- 135个变态网名(135 freak names).doc
- 13过秦论(13, over Qin theory).doc
- ka销售是什麼(What is Ka sale).doc
- js添加属性(JS add properties).doc
- kiss×kiss collections vol.11[杉田智和]—简(kiss×kiss vol.11 (杉田智和 简 collections]).doc
- kms报错(Kms reported error).doc
- ktv慢摇吧设计方案(KTV Manyao bar design).doc
- ky语法(KY syntax).doc
- jiepo3(jiepo3).doc
- kms本地服务器激活(Kms local server activation).doc
- k线理论的基本知识(Basic knowledge of K-line theory).doc
- labsky检验天空继续教育在线考试(Labsky test sky continuous education online test).doc
文档评论(0)