使用 Geany IDE,是否可以在运行每条指令时单步执行函数中的每条指令?我知道很多 IDE(包括 Eclipse 和 Visual Studio)都有这个功能,但我还没有在 Geany 中找到它。
function doStuff(){
for(var i = 0; i < 10; i++){
console.log("Is it possible to step through this JavaScript function in Geany?");
}
}
doStuff();