js中String转Array

var str ="qqq";
alert(str.constructor);//String

str = [str];
alert(str.constructor);//Array

你可能感兴趣的:(js中String转Array)