Of the many methods to convert to a string, I am confused between:
var foo = new String(val);
vs
var foo = String(val);
When to use one over the other ?
Of the many methods to convert to a string, I am confused between:
var foo = new String(val);
vs
var foo = String(val);
When to use one over the other ?