Edit in JSFiddle

var Human = function(){
    this.type = 'human';
    console.log('I was called');
};

new Human; //new invokes without () and logs "I was called"

console.log((new Human).type); //logs human