Versions with this page:
Versions without this page:
将数组的内容合并到一个字符串中。
这些元素由/分隔符/字符串进行分隔,并能够返回合并后数组的副本。
function Start () { var arr = new Array ("Hello", "World"); // Prints "Hello, World" print(arr.join(", ")); }
注意:此功能仅适用于 javascript。C# 不使用此功能。