JavaScript 数组Array-toString()方法
时间:2019-08-20 13:50:50 来源:igfitidea点击:
说明
方法返回一个字符串,该字符串表示指定数组及其元素的源代码。
由于toString有时用于实现其他返回值,因此建议使用join方法。
语法
array.toString();
返回值
返回表示数组的字符串。
示例
var array = [2, 4, 8, 16]; console.log(array); // [2, 4, 8, 16] console.log(array.toString()); // 2,4,8,16