On Firebug:
>>> str1 = String('String One');
"String One"
typeof(str1);
"string"
>>> str2 = new String('String Two');
String { 0="S", 1="t", 2="r", more...}
typeof(str2);
"object"
My Question is what is the difference between both technique?
What is the advantage of one over the other?