andibra10
10/12/2018 - 11:23 PM

function-anonymous.js

// 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
}