标签: javascript object closures
我有一个对象SomeObject = {property: function},其中" 属性"是function() { anotherFunction() }。 有没有办法获得" anotherFunction "的内容和范围?关闭?
SomeObject = {property: function}
function() { anotherFunction() }
按原样获取此对象'并且需要找出正在发生的事情。
答案 0 :(得分:0)
在其上设置断点(或在它之前插入debugger;语句),然后运行代码并检查调试器中的堆栈和上下文。
debugger;