使用数组push来连接字符串

时间:2015-09-15 08:23:41

标签: 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

我发现它很有趣。但这比通常的字符串连接更好吗?

0 个答案:

没有答案