例如:
const x = 10
const f1 = () => {/* do something... */}
f1() // <<-- I'm here
console.log(x) // I want to go here without entring to f1 AT ALL but still let f1 execute.
我想让f1
执行,但我不想重蹈覆辙。
是否可以?
无重复:
另一个问题是寻找一种方法来阻止任何行执行,而这个问题是关于让唯一的函数调用执行但没有调试器进入它们的执行的行。