20
해당 함수 내에서 함수 이름을 얻는 방법은 무엇입니까?
해당 함수 내에서 함수 이름에 어떻게 액세스 할 수 있습니까? // parasitic inheritance var ns.parent.child = function() { var parent = new ns.parent(); parent.newFunc = function() { } return parent; } var ns.parent = function() { // at this point, i want to know who the child is that called …
263
javascript
function