let site = ['runoob', 'google', 'taobao','google']//数组转字符串let newSite = site.join('&') ;//或者let newSite = site.toString() ;//检测数据类型document.write(typeof(newSite)); //string //字符串转数组let other = n...