时间:2021-05-26
本文实例讲述了JS数组方法join()用法。分享给大家供大家参考,具体如下:
join()方法
代码如下:
Array.prototype.copyJoin = function() { var string = ''; for(var i = 0; i < this.length; i++) { // 将数组中各项值为null 或undefined的项改为空字符串。 if(this[i] == null || this[i] == undefined) { this[i] = ''; } // 对数组进行操作 if(arguments.length == 1 && arguments[0] != undefined) { //指定使用的分隔符 string += (i < this.length - 1) ? this[i] + arguments[0] : this[i]; } else { // 默认使用的分隔符————逗号 // if(i < this.length - 1) { // string += this[i] + ','; // } // else { // string += this[i]; // } string += (i < this.length - 1) ? this[i] + ',' : this[i]; } } return string;}// 不传任何值或者传入undefinedvar arr = [1, 2, 3, 4, 5, 6];console.log(arr.copyJoin()); // 1,2,3,4,5,6console.log(arr.copyJoin().length); // 11console.log(arr.copyJoin(undefined)); // 1,2,3,4,5,6console.log(arr.copyJoin(undefined).length); // 11// 传入参数console.log(arr.copyJoin('||')); // 1||2||3||4||5||6console.log(arr.copyJoin('||').length); // 16// 数组中的某一项是null或undefinedvar arr2 = [1, undefined, 2, undefined, 3, 4, 5, 6, 7, null, 8, null, 9];console.log(arr2.copyJoin()); // 1,,2,,3,4,5,6,7,,8,,9console.log(arr2.copyJoin().length); // 21console.log(arr2.copyJoin(undefined)); // 1,,2,,3,4,5,6,7,,8,,9console.log(arr2.copyJoin(undefined).length); // 21运行结果:
以上在IE8+ join()方法一样,但是在IE7及更早版本(copyJoin()方法不存在):
arr.join(undefined)); // 1undefined2undefined3undefined4undefined5undefined6arr.join(undefined).length); // 51arr2.join(undefined)); // 1undefinedundefined2undefinedundefined3undefined4undefined5undefined6undefined7undefinedundefined8undefinedundefined9arr2.join(undefined).length); // 117感兴趣的朋友可以使用在线HTML/CSS/JavaScript代码运行工具:http://tools.jb51.net/code/HtmlJsRun测试上述代码运行效果。
更多关于JavaScript相关内容感兴趣的读者可查看本站专题:《JavaScript数组操作技巧总结》、《JavaScript遍历算法与技巧总结》、《javascript面向对象入门教程》、《JavaScript数学运算用法总结》、《JavaScript数据结构与算法技巧总结》及《JavaScript错误与调试技巧总结》
希望本文所述对大家JavaScript程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了JS数组方法reduce的用法。分享给大家供大家参考,具体如下:数组方法reduce用来迭代一个数组,并且把它累积到一个值中。使用reduce方法
本文实例讲述了JS数组的常见用法。分享给大家供大家参考。具体方法如下:复制代码代码如下:数组方法的应用vararrayFruit=newArray("apple
本文实例讲述了JS数组方法reverse()用法。分享给大家供大家参考,具体如下:reverse()方法定义:反转数组项的顺序语法:arr.reverse()参
本文实例讲述了JS数组方法slice()用法。分享给大家供大家参考,具体如下:slice()方法slice(),它能基于当前数组中的一个或多个创建一个新数组。可
本文实例讲述了JS数组方法shift()、unshift()用法。分享给大家供大家参考,具体如下:shift()方法1.定义:从数组中删除第一个元素,并返回该元