making instanceof work with Object.create

dont do it!!!

JavaScript

var foo = 1

if (foo instanceof Number ) {
  alert('mind blown!');
}