var arr= ['g','o','o','d'];
var arr2 = arr.join();
Arr2 will be "g,o,o,d". I would like to get "good". I know there 开发者_如何学Goare a million other ways to achieve this but was curious if there was a way with join.
Sure - just pass an empty string:
var arr2 = arr.join('');
精彩评论