var str = "This is string";
console.log(typeof str)
str = new Object(str);
console.log(typeof str);
你也可以new 其他的类型哦,比如 String、Array、Function都可以,比如:
var str = "console.log('This is string');";
console.log(typeof str)
str = new Function(str);
console.log(str); //查看一下它是一个函数体
str(); //输出 This is string,也就是把我们之前的 str字符串转换成函数体的内容了
你 new 一个对应的对象类型就可以,比如:
你也可以new 其他的类型哦,比如 String、Array、Function都可以,比如: