What is a good Javascript debugging tool?

后端 未结 16 780
渐次进展
渐次进展 2020-11-29 06:12

Haven\'t touch javascript for 3 years. Just got a javascript project and wanted to know any new ways or tools emerged these years to debug javascript? I used alert 3 years

16条回答
  •  野性不改
    2020-11-29 06:45

    For IE (which I don't suggest using), the latest version (IE8) includes developer tools.

    IE8 developer tools

    For Firefox, there's an extension called Firebug that has DOM manipulation, a JS console, and more.

    firebug DOM inspector firebug JS debugger

    WebKit (used in Safari and Chrome) has a built-in Web Inspector that includes a JS debugger, along with a DOM outline and manipulation tools, and a JS console.

    webkit DOM inspector webkit JS debugger webkit network profiler webkit resource info

提交回复
热议问题