var a='test'; console.log(typeof a); // "string" a = new String('test'); console.log(typeof a); // "object"