ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## 问题 Problem 你想把一个数组转成字符串。 You want to create a string from an array. ## 方法 Solution 使用JavaScript Array的toString()方法。 Use JavaScript’s Array toString() method: ~~~ ["one", "two", "three"].toString() # => 'one,two,three' ~~~ ## 讨论 Discussion `toString()`是一个标准的JavaScript方法。别忘了括号。 `toString()` is a standard JavaScript method. Don’t forget the parentheses.