1、在vs code左侧打上断点
2、进入配置项
3、进入调试
4、条件断点:
function test(n){ console.log(n); } for (let i = 0; i < 100; i++) { const n=parseInt(Math.random()*10); test(n); }
1、在vs code左侧打上断点
2、进入配置项
3、进入调试
4、条件断点:
function test(n){ console.log(n); } for (let i = 0; i < 100; i++) { const n=parseInt(Math.random()*10); test(n); }