标签: javascript arrays string concat
在本教程的以下部分中。我看到数组的push方法已用于连接字符串。 http://www.html5rocks.com/en/tutorials/file/dndfiles/#toc-selecting-files-input
示例:
x = [] x.push('a','b', 'c') x.join('') //abc
我发现它很有趣。但这比通常的字符串连接更好吗?