I have this function inside a function, how i call fullName function?
var person = function(){
function fullName(){}
}
person.fullName(); This doesn't work
I have this function inside a function, how i call fullName function?
var person = function(){
function fullName(){}
}
person.fullName(); This doesn't work