There's no reason to use wrapper objects for primitive types, plus they're dangerous :

var x = new Boolean(false);
if (x) {
  alert('hi');  // Shows 'hi'.
}

Just use simple literals instead.