// EXEMPLO 1 var cadastro = function(){ console.log(cadastro.name) // '' ou string vazia } var cadastro = function(){ console.log(cadastro.name === '') // true } // EXEMPLO 2 var hi = function hey(){ console.log(hi.name) // hey }