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 …
263
javascript
function