此方法返回String对象的原始值。
string.valueOf()
返回String对象的原始值。
var str = new String("Hello world"); console.log(str.valueOf( ));
Hello world