chrome 开发工具和 Firefox 开发工具有什么不同?
What is different between chrome dev-tools and Firefox dev-tools?
我是 JavaScript 的新手,我在控制台上写了这段 js 代码:`
function test (){}
var a1 = new test();
a1;//chrome dev-tool test()
a1;// firefox dev-tool : object {}
`
和运行在chrome开发工具和Firefox开发工具上,我看到了不同的结果 .
1.in chrome : 测试{}
2.in Firefox:对象{}
chrome 本质上是说 {} 是一个由名称为 test.Firefox 的函数构造的空对象,是说 {} 是 Object.the 微妙的一般构造的空对象不同之处在于 Chrome 作为内部 属性 主动跟踪执行构造的实际函数的名称,而其他浏览器不跟踪该附加信息。
我是 JavaScript 的新手,我在控制台上写了这段 js 代码:`
function test (){}
var a1 = new test();
a1;//chrome dev-tool test()
a1;// firefox dev-tool : object {}
`
和运行在chrome开发工具和Firefox开发工具上,我看到了不同的结果 .
1.in chrome : 测试{}
2.in Firefox:对象{}
chrome 本质上是说 {} 是一个由名称为 test.Firefox 的函数构造的空对象,是说 {} 是 Object.the 微妙的一般构造的空对象不同之处在于 Chrome 作为内部 属性 主动跟踪执行构造的实际函数的名称,而其他浏览器不跟踪该附加信息。