If i create a name space object
name.Name({ })
e.g
name.Name({
var:"value",
{name:prop},
func : function(){}
})
How do you execute a self invoking function, something like: (function(){return var})() within this object and available throughout this object?
1 Answer