Object Objects
The Object constructor converts its argument (any numeric, boolean, or string literal) to a JavaScript object: var s = new Object( "NPAC" );is equivalent to var s = new String( "NPAC" );This is usually unnecessary, however
The corresponding function is Object(…)