Node2-6环境&调试----debug
Posted chorkiu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Node2-6环境&调试----debug相关的知识,希望对你有一定的参考价值。
13_debug.js
//测试的脚本 function test1() const a = parseInt(Math.random() * 10); const b = parseInt(Math.random() * 10); const c = test2(a, b) function test2(a, b) if (a > b) a += a * 2 else b -= a return a + b; test1();
运行代码:
接着 打开chrome://inspect/#devices
进入调试环境
以上是关于Node2-6环境&调试----debug的主要内容,如果未能解决你的问题,请参考以下文章