How can I access a function name from inside that function?
// parasitic inheritance var ns.parent.child = function() { var parent = new ns.parent(); p
Easy way to get function name from within fuction you are running.
function x(){alert(this.name)};x()